mirror of
https://github.com/neovim/neovim.git
synced 2026-05-01 03:24:49 +00:00
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.
42 lines
673 B
Plaintext
42 lines
673 B
Plaintext
ONE: expecting global undolevels: 5, local undolevels: -123456 (default)
|
|
1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
|
|
|
|
undolevels=5 global
|
|
undolevels=-123456 local
|
|
TWO: expecting global undolevels: 5, local undolevels: 2 (first) then 10 (afterwards)
|
|
1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
|
10
|
|
|
|
|
|
undolevels=5 global
|
|
undolevels=2 local
|
|
|
|
undolevels=5 global
|
|
undolevels=10 local
|
|
|
|
global value shouldn't be changed and still be 5!
|
|
ONE: expecting global undolevels: 5, local undolevels: -123456 (default)
|
|
undolevels=5 global
|
|
undolevels=-123456 local
|
|
|
|
global value should be changed to 50
|
|
THREE: expecting global undolevels: 50, local undolevels: -123456 (default)
|
|
|
|
undolevels=50 global
|
|
undolevels=-123456 local
|