2016-08-07 13:48:20 +02:00
|
|
|
" Test for options
|
|
|
|
|
2020-09-12 14:53:53 +02:00
|
|
|
source shared.vim
|
2019-08-07 23:07:07 +02:00
|
|
|
source check.vim
|
2020-04-04 14:00:39 +02:00
|
|
|
source view_util.vim
|
2019-08-07 23:07:07 +02:00
|
|
|
|
2019-01-09 23:01:02 +01:00
|
|
|
func Test_whichwrap()
|
2016-08-07 13:48:20 +02:00
|
|
|
set whichwrap=b,s
|
|
|
|
call assert_equal('b,s', &whichwrap)
|
|
|
|
|
|
|
|
set whichwrap+=h,l
|
|
|
|
call assert_equal('b,s,h,l', &whichwrap)
|
|
|
|
|
|
|
|
set whichwrap+=h,l
|
|
|
|
call assert_equal('b,s,h,l', &whichwrap)
|
|
|
|
|
|
|
|
set whichwrap+=h,l
|
|
|
|
call assert_equal('b,s,h,l', &whichwrap)
|
|
|
|
|
2017-02-05 14:13:20 +01:00
|
|
|
set whichwrap=h,h
|
|
|
|
call assert_equal('h', &whichwrap)
|
|
|
|
|
|
|
|
set whichwrap=h,h,h
|
|
|
|
call assert_equal('h', &whichwrap)
|
|
|
|
|
2020-04-11 17:09:31 +02:00
|
|
|
" For compatibility with Vim 3.0 and before, number values are also
|
|
|
|
" supported for 'whichwrap'
|
|
|
|
set whichwrap=1
|
|
|
|
call assert_equal('b', &whichwrap)
|
|
|
|
set whichwrap=2
|
|
|
|
call assert_equal('s', &whichwrap)
|
|
|
|
set whichwrap=4
|
|
|
|
call assert_equal('h,l', &whichwrap)
|
|
|
|
set whichwrap=8
|
|
|
|
call assert_equal('<,>', &whichwrap)
|
|
|
|
set whichwrap=16
|
|
|
|
call assert_equal('[,]', &whichwrap)
|
|
|
|
set whichwrap=31
|
|
|
|
call assert_equal('b,s,h,l,<,>,[,]', &whichwrap)
|
|
|
|
|
2016-08-07 13:48:20 +02:00
|
|
|
set whichwrap&
|
2019-01-09 23:01:02 +01:00
|
|
|
endfunc
|
2016-08-07 13:48:20 +02:00
|
|
|
|
2019-01-09 23:01:02 +01:00
|
|
|
func Test_isfname()
|
2017-02-23 17:07:14 +01:00
|
|
|
" This used to cause Vim to access uninitialized memory.
|
|
|
|
set isfname=
|
|
|
|
call assert_equal("~X", expand("~X"))
|
|
|
|
set isfname&
|
2019-01-09 23:01:02 +01:00
|
|
|
endfunc
|
2017-02-23 17:07:14 +01:00
|
|
|
|
2022-05-09 12:16:19 +01:00
|
|
|
" Test for getting the value of 'pastetoggle'
|
|
|
|
func Test_pastetoggle()
|
|
|
|
" character with K_SPECIAL byte
|
|
|
|
let &pastetoggle = '…'
|
|
|
|
call assert_equal('…', &pastetoggle)
|
|
|
|
call assert_equal("\n pastetoggle=…", execute('set pastetoggle?'))
|
|
|
|
|
|
|
|
" modified character with K_SPECIAL byte
|
|
|
|
let &pastetoggle = '<M-…>'
|
|
|
|
call assert_equal('<M-…>', &pastetoggle)
|
|
|
|
call assert_equal("\n pastetoggle=<M-…>", execute('set pastetoggle?'))
|
|
|
|
|
|
|
|
" illegal bytes
|
|
|
|
let str = ":\x7f:\x80:\x90:\xd0:"
|
|
|
|
let &pastetoggle = str
|
|
|
|
call assert_equal(str, &pastetoggle)
|
|
|
|
call assert_equal("\n pastetoggle=" .. strtrans(str), execute('set pastetoggle?'))
|
2022-07-23 06:25:29 +01:00
|
|
|
|
2022-05-09 12:16:19 +01:00
|
|
|
unlet str
|
2022-07-23 06:25:29 +01:00
|
|
|
set pastetoggle&
|
2022-05-09 12:16:19 +01:00
|
|
|
endfunc
|
|
|
|
|
2019-01-09 23:01:02 +01:00
|
|
|
func Test_wildchar()
|
2017-02-25 21:37:57 +01:00
|
|
|
" Empty 'wildchar' used to access invalid memory.
|
|
|
|
call assert_fails('set wildchar=', 'E521:')
|
|
|
|
call assert_fails('set wildchar=abc', 'E521:')
|
|
|
|
set wildchar=<Esc>
|
|
|
|
let a=execute('set wildchar?')
|
|
|
|
call assert_equal("\n wildchar=<Esc>", a)
|
|
|
|
set wildchar=27
|
|
|
|
let a=execute('set wildchar?')
|
|
|
|
call assert_equal("\n wildchar=<Esc>", a)
|
|
|
|
set wildchar&
|
2019-01-09 23:01:02 +01:00
|
|
|
endfunc
|
2017-02-25 21:37:57 +01:00
|
|
|
|
2020-05-22 14:10:36 +02:00
|
|
|
func Test_wildoptions()
|
|
|
|
set wildoptions=
|
|
|
|
set wildoptions+=tagfile
|
|
|
|
set wildoptions+=tagfile
|
|
|
|
call assert_equal('tagfile', &wildoptions)
|
|
|
|
endfunc
|
|
|
|
|
2020-01-18 15:53:19 +01:00
|
|
|
func Test_options_command()
|
2016-08-07 13:48:20 +02:00
|
|
|
let caught = 'ok'
|
|
|
|
try
|
|
|
|
options
|
|
|
|
catch
|
|
|
|
let caught = v:throwpoint . "\n" . v:exception
|
|
|
|
endtry
|
|
|
|
call assert_equal('ok', caught)
|
|
|
|
|
2019-05-21 20:54:45 +02:00
|
|
|
" Check if the option-window is opened horizontally.
|
|
|
|
wincmd j
|
|
|
|
call assert_notequal('option-window', bufname(''))
|
|
|
|
wincmd k
|
|
|
|
call assert_equal('option-window', bufname(''))
|
|
|
|
" close option-window
|
|
|
|
close
|
|
|
|
|
|
|
|
" Open the option-window vertically.
|
|
|
|
vert options
|
|
|
|
" Check if the option-window is opened vertically.
|
|
|
|
wincmd l
|
|
|
|
call assert_notequal('option-window', bufname(''))
|
|
|
|
wincmd h
|
|
|
|
call assert_equal('option-window', bufname(''))
|
|
|
|
" close option-window
|
|
|
|
close
|
|
|
|
|
2020-04-13 21:16:21 +02:00
|
|
|
" Open the option-window at the top.
|
|
|
|
set splitbelow
|
|
|
|
topleft options
|
|
|
|
call assert_equal(1, winnr())
|
|
|
|
close
|
|
|
|
|
|
|
|
" Open the option-window at the bottom.
|
|
|
|
set nosplitbelow
|
|
|
|
botright options
|
|
|
|
call assert_equal(winnr('$'), winnr())
|
|
|
|
close
|
|
|
|
set splitbelow&
|
|
|
|
|
2019-05-21 20:54:45 +02:00
|
|
|
" Open the option-window in a new tab.
|
|
|
|
tab options
|
|
|
|
" Check if the option-window is opened in a tab.
|
|
|
|
normal gT
|
|
|
|
call assert_notequal('option-window', bufname(''))
|
|
|
|
normal gt
|
|
|
|
call assert_equal('option-window', bufname(''))
|
2016-08-07 13:48:20 +02:00
|
|
|
" close option-window
|
|
|
|
close
|
2020-04-11 17:09:31 +02:00
|
|
|
|
|
|
|
" Open the options window browse
|
|
|
|
if has('browse')
|
|
|
|
browse set
|
|
|
|
call assert_equal('option-window', bufname(''))
|
|
|
|
close
|
|
|
|
endif
|
2019-01-09 23:01:02 +01:00
|
|
|
endfunc
|
2016-08-07 13:48:20 +02:00
|
|
|
|
2019-01-09 23:01:02 +01:00
|
|
|
func Test_path_keep_commas()
|
2016-08-07 13:48:20 +02:00
|
|
|
" Test that changing 'path' keeps two commas.
|
|
|
|
set path=foo,,bar
|
|
|
|
set path-=bar
|
|
|
|
set path+=bar
|
|
|
|
call assert_equal('foo,,bar', &path)
|
|
|
|
|
|
|
|
set path&
|
2019-01-09 23:01:02 +01:00
|
|
|
endfunc
|
2016-08-12 18:29:59 +02:00
|
|
|
|
2021-12-05 13:21:18 +00:00
|
|
|
func Test_path_too_long()
|
|
|
|
exe 'set path=' .. repeat('x', 10000)
|
|
|
|
call assert_fails('find x', 'E854:')
|
|
|
|
set path&
|
|
|
|
endfunc
|
|
|
|
|
2016-08-12 18:29:59 +02:00
|
|
|
func Test_signcolumn()
|
2020-08-12 18:50:36 +02:00
|
|
|
CheckFeature signs
|
|
|
|
call assert_equal("auto", &signcolumn)
|
|
|
|
set signcolumn=yes
|
|
|
|
set signcolumn=no
|
|
|
|
call assert_fails('set signcolumn=nope')
|
2016-08-12 18:29:59 +02:00
|
|
|
endfunc
|
|
|
|
|
2016-11-04 15:23:45 +01:00
|
|
|
func Test_filetype_valid()
|
|
|
|
set ft=valid_name
|
|
|
|
call assert_equal("valid_name", &filetype)
|
|
|
|
set ft=valid-name
|
|
|
|
call assert_equal("valid-name", &filetype)
|
|
|
|
|
|
|
|
call assert_fails(":set ft=wrong;name", "E474:")
|
|
|
|
call assert_fails(":set ft=wrong\\\\name", "E474:")
|
|
|
|
call assert_fails(":set ft=wrong\\|name", "E474:")
|
|
|
|
call assert_fails(":set ft=wrong/name", "E474:")
|
|
|
|
call assert_fails(":set ft=wrong\\\nname", "E474:")
|
|
|
|
call assert_equal("valid-name", &filetype)
|
|
|
|
|
|
|
|
exe "set ft=trunc\x00name"
|
|
|
|
call assert_equal("trunc", &filetype)
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_syntax_valid()
|
2020-08-12 18:50:36 +02:00
|
|
|
CheckFeature syntax
|
2016-11-04 15:23:45 +01:00
|
|
|
set syn=valid_name
|
|
|
|
call assert_equal("valid_name", &syntax)
|
|
|
|
set syn=valid-name
|
|
|
|
call assert_equal("valid-name", &syntax)
|
|
|
|
|
|
|
|
call assert_fails(":set syn=wrong;name", "E474:")
|
|
|
|
call assert_fails(":set syn=wrong\\\\name", "E474:")
|
|
|
|
call assert_fails(":set syn=wrong\\|name", "E474:")
|
|
|
|
call assert_fails(":set syn=wrong/name", "E474:")
|
|
|
|
call assert_fails(":set syn=wrong\\\nname", "E474:")
|
|
|
|
call assert_equal("valid-name", &syntax)
|
|
|
|
|
|
|
|
exe "set syn=trunc\x00name"
|
|
|
|
call assert_equal("trunc", &syntax)
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_keymap_valid()
|
2020-08-12 18:50:36 +02:00
|
|
|
CheckFeature keymap
|
2016-11-04 15:23:45 +01:00
|
|
|
call assert_fails(":set kmp=valid_name", "E544:")
|
|
|
|
call assert_fails(":set kmp=valid_name", "valid_name")
|
|
|
|
call assert_fails(":set kmp=valid-name", "E544:")
|
|
|
|
call assert_fails(":set kmp=valid-name", "valid-name")
|
|
|
|
|
|
|
|
call assert_fails(":set kmp=wrong;name", "E474:")
|
|
|
|
call assert_fails(":set kmp=wrong\\\\name", "E474:")
|
|
|
|
call assert_fails(":set kmp=wrong\\|name", "E474:")
|
|
|
|
call assert_fails(":set kmp=wrong/name", "E474:")
|
|
|
|
call assert_fails(":set kmp=wrong\\\nname", "E474:")
|
|
|
|
|
|
|
|
call assert_fails(":set kmp=trunc\x00name", "E544:")
|
|
|
|
call assert_fails(":set kmp=trunc\x00name", "trunc")
|
|
|
|
endfunc
|
2016-11-25 22:04:13 +01:00
|
|
|
|
2016-11-26 17:45:53 +01:00
|
|
|
func Check_dir_option(name)
|
2016-11-25 22:04:13 +01:00
|
|
|
" Check that it's possible to set the option.
|
2016-11-26 17:45:53 +01:00
|
|
|
exe 'set ' . a:name . '=/usr/share/dict/words'
|
|
|
|
call assert_equal('/usr/share/dict/words', eval('&' . a:name))
|
|
|
|
exe 'set ' . a:name . '=/usr/share/dict/words,/and/there'
|
|
|
|
call assert_equal('/usr/share/dict/words,/and/there', eval('&' . a:name))
|
|
|
|
exe 'set ' . a:name . '=/usr/share/dict\ words'
|
|
|
|
call assert_equal('/usr/share/dict words', eval('&' . a:name))
|
2016-11-25 22:04:13 +01:00
|
|
|
|
|
|
|
" Check rejecting weird characters.
|
2016-11-26 17:45:53 +01:00
|
|
|
call assert_fails("set " . a:name . "=/not&there", "E474:")
|
|
|
|
call assert_fails("set " . a:name . "=/not>there", "E474:")
|
|
|
|
call assert_fails("set " . a:name . "=/not.*there", "E474:")
|
|
|
|
endfunc
|
|
|
|
|
2017-02-23 18:08:56 +01:00
|
|
|
func Test_cinkeys()
|
|
|
|
" This used to cause invalid memory access
|
|
|
|
set cindent cinkeys=0
|
|
|
|
norm a
|
|
|
|
set cindent& cinkeys&
|
|
|
|
endfunc
|
|
|
|
|
2016-11-26 17:45:53 +01:00
|
|
|
func Test_dictionary()
|
|
|
|
call Check_dir_option('dictionary')
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_thesaurus()
|
|
|
|
call Check_dir_option('thesaurus')
|
2017-02-04 15:53:32 +01:00
|
|
|
endfun
|
|
|
|
|
2017-02-17 14:53:15 +01:00
|
|
|
func Test_complete()
|
|
|
|
" Trailing single backslash used to cause invalid memory access.
|
|
|
|
set complete=s\
|
|
|
|
new
|
|
|
|
call feedkeys("i\<C-N>\<Esc>", 'xt')
|
|
|
|
bwipe!
|
2020-04-06 21:35:05 +02:00
|
|
|
call assert_fails('set complete=ix', 'E535:')
|
2017-02-17 14:53:15 +01:00
|
|
|
set complete&
|
|
|
|
endfun
|
|
|
|
|
2017-02-04 15:53:32 +01:00
|
|
|
func Test_set_completion()
|
|
|
|
call feedkeys(":set di\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set dictionary diff diffexpr diffopt digraph directory display', @:)
|
|
|
|
|
2019-12-27 17:20:55 +01:00
|
|
|
call feedkeys(":setlocal di\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"setlocal dictionary diff diffexpr diffopt digraph directory display', @:)
|
|
|
|
|
|
|
|
call feedkeys(":setglobal di\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"setglobal dictionary diff diffexpr diffopt digraph directory display', @:)
|
|
|
|
|
2022-11-02 13:30:51 +00:00
|
|
|
" Expand boolean options. When doing :set no<Tab>
|
2017-02-04 15:53:32 +01:00
|
|
|
" vim displays the options names without "no" but completion uses "no...".
|
|
|
|
call feedkeys(":set nodi\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set nodiff digraph', @:)
|
|
|
|
|
|
|
|
call feedkeys(":set invdi\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set invdiff digraph', @:)
|
|
|
|
|
|
|
|
" Expand abbreviation of options.
|
|
|
|
call feedkeys(":set ts\<C-A>\<C-B>\"\<CR>", 'tx')
|
2021-10-16 16:48:27 +01:00
|
|
|
call assert_equal('"set tabstop thesaurus thesaurusfunc ttyscroll', @:)
|
2017-02-04 15:53:32 +01:00
|
|
|
|
|
|
|
" Expand current value
|
|
|
|
call feedkeys(":set fileencodings=\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set fileencodings=ucs-bom,utf-8,default,latin1', @:)
|
|
|
|
|
|
|
|
call feedkeys(":set fileencodings:\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set fileencodings:ucs-bom,utf-8,default,latin1', @:)
|
|
|
|
|
|
|
|
" Expand key codes.
|
|
|
|
call feedkeys(":set <H\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set <Help> <Home>', @:)
|
|
|
|
|
|
|
|
" Expand terminal options.
|
|
|
|
call feedkeys(":set t_A\<C-A>\<C-B>\"\<CR>", 'tx')
|
2020-05-31 16:42:30 +02:00
|
|
|
call assert_equal('"set t_AB t_AF t_AU t_AL', @:)
|
2020-05-07 18:43:44 +02:00
|
|
|
call assert_fails('call feedkeys(":set <t_afoo>=\<C-A>\<CR>", "xt")', 'E474:')
|
2017-02-04 15:53:32 +01:00
|
|
|
|
|
|
|
" Expand directories.
|
|
|
|
call feedkeys(":set cdpath=./\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_match(' ./samples/ ', @:)
|
2020-08-13 18:59:55 +02:00
|
|
|
call assert_notmatch(' ./summarize.vim ', @:)
|
2017-02-04 15:53:32 +01:00
|
|
|
|
|
|
|
" Expand files and directories.
|
|
|
|
call feedkeys(":set tags=./\<C-A>\<C-B>\"\<CR>", 'tx')
|
2020-08-13 18:59:55 +02:00
|
|
|
call assert_match(' ./samples/.* ./summarize.vim', @:)
|
2017-02-04 15:53:32 +01:00
|
|
|
|
|
|
|
call feedkeys(":set tags=./\\\\ dif\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set tags=./\\ diff diffexpr diffopt', @:)
|
2019-06-15 18:40:37 +02:00
|
|
|
set tags&
|
2020-04-12 13:50:26 +02:00
|
|
|
|
|
|
|
" Expanding the option names
|
|
|
|
call feedkeys(":set \<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal('"set all', @:)
|
|
|
|
|
|
|
|
" Expanding a second set of option names
|
|
|
|
call feedkeys(":set wrapscan \<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal('"set wrapscan all', @:)
|
|
|
|
|
|
|
|
" Expanding a special keycode
|
|
|
|
call feedkeys(":set <Home>\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal('"set <Home>', @:)
|
|
|
|
|
|
|
|
" Expanding an invalid special keycode
|
|
|
|
call feedkeys(":set <abcd>\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal("\"set <abcd>\<Tab>", @:)
|
|
|
|
|
|
|
|
" Expanding a terminal keycode
|
|
|
|
call feedkeys(":set t_AB\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal("\"set t_AB", @:)
|
|
|
|
|
|
|
|
" Expanding an invalid option name
|
|
|
|
call feedkeys(":set abcde=\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal("\"set abcde=\<Tab>", @:)
|
|
|
|
|
|
|
|
" Expanding after a = for a boolean option
|
|
|
|
call feedkeys(":set wrapscan=\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal("\"set wrapscan=\<Tab>", @:)
|
|
|
|
|
|
|
|
" Expanding a numeric option
|
|
|
|
call feedkeys(":set tabstop+=\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal("\"set tabstop+=" .. &tabstop, @:)
|
|
|
|
|
|
|
|
" Expanding a non-boolean option
|
|
|
|
call feedkeys(":set invtabstop=\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal("\"set invtabstop=", @:)
|
|
|
|
|
|
|
|
" Expand options for 'spellsuggest'
|
|
|
|
call feedkeys(":set spellsuggest=best,file:xyz\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal("\"set spellsuggest=best,file:xyz", @:)
|
|
|
|
|
|
|
|
" Expand value for 'key'
|
|
|
|
set key=abcd
|
|
|
|
call feedkeys(":set key=\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal('"set key=*****', @:)
|
|
|
|
set key=
|
2021-02-02 21:10:01 +01:00
|
|
|
|
|
|
|
" Expand values for 'filetype'
|
|
|
|
call feedkeys(":set filetype=sshdconfi\<Tab>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal('"set filetype=sshdconfig', @:)
|
|
|
|
call feedkeys(":set filetype=a\<C-A>\<C-B>\"\<CR>", 'xt')
|
|
|
|
call assert_equal('"set filetype=' .. getcompletion('a*', 'filetype')->join(), @:)
|
2017-02-04 15:53:32 +01:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_set_errors()
|
|
|
|
call assert_fails('set scroll=-1', 'E49:')
|
|
|
|
call assert_fails('set backupcopy=', 'E474:')
|
|
|
|
call assert_fails('set regexpengine=3', 'E474:')
|
|
|
|
call assert_fails('set history=10001', 'E474:')
|
2019-07-01 22:06:07 +02:00
|
|
|
call assert_fails('set numberwidth=21', 'E474:')
|
2020-03-22 14:41:22 +01:00
|
|
|
call assert_fails('set colorcolumn=-a', 'E474:')
|
|
|
|
call assert_fails('set colorcolumn=a', 'E474:')
|
|
|
|
call assert_fails('set colorcolumn=1,', 'E474:')
|
|
|
|
call assert_fails('set colorcolumn=1;', 'E474:')
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails('set cmdheight=-1', 'E487:')
|
|
|
|
call assert_fails('set cmdwinheight=-1', 'E487:')
|
|
|
|
if has('conceal')
|
|
|
|
call assert_fails('set conceallevel=-1', 'E487:')
|
|
|
|
call assert_fails('set conceallevel=4', 'E474:')
|
|
|
|
endif
|
|
|
|
call assert_fails('set helpheight=-1', 'E487:')
|
|
|
|
call assert_fails('set history=-1', 'E487:')
|
|
|
|
call assert_fails('set report=-1', 'E487:')
|
|
|
|
call assert_fails('set shiftwidth=-1', 'E487:')
|
|
|
|
call assert_fails('set sidescroll=-1', 'E487:')
|
|
|
|
call assert_fails('set tabstop=-1', 'E487:')
|
2022-01-28 20:47:49 +00:00
|
|
|
call assert_fails('set tabstop=10000', 'E474:')
|
2022-03-02 19:49:38 +00:00
|
|
|
call assert_fails('let &tabstop = 10000', 'E474:')
|
2022-01-28 20:47:49 +00:00
|
|
|
call assert_fails('set tabstop=5500000000', 'E474:')
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails('set textwidth=-1', 'E487:')
|
|
|
|
call assert_fails('set timeoutlen=-1', 'E487:')
|
|
|
|
call assert_fails('set updatecount=-1', 'E487:')
|
|
|
|
call assert_fails('set updatetime=-1', 'E487:')
|
|
|
|
call assert_fails('set winheight=-1', 'E487:')
|
|
|
|
call assert_fails('set tabstop!', 'E488:')
|
|
|
|
call assert_fails('set xxx', 'E518:')
|
|
|
|
call assert_fails('set beautify?', 'E519:')
|
|
|
|
call assert_fails('set undolevels=x', 'E521:')
|
|
|
|
call assert_fails('set tabstop=', 'E521:')
|
|
|
|
call assert_fails('set comments=-', 'E524:')
|
|
|
|
call assert_fails('set comments=a', 'E525:')
|
|
|
|
call assert_fails('set foldmarker=x', 'E536:')
|
|
|
|
call assert_fails('set commentstring=x', 'E537:')
|
2022-03-02 19:49:38 +00:00
|
|
|
call assert_fails('let &commentstring = "x"', 'E537:')
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails('set complete=x', 'E539:')
|
2021-01-17 13:48:03 +01:00
|
|
|
call assert_fails('set rulerformat=%-', 'E539:')
|
|
|
|
call assert_fails('set rulerformat=%(', 'E542:')
|
|
|
|
call assert_fails('set rulerformat=%15(%%', 'E542:')
|
|
|
|
call assert_fails('set statusline=%$', 'E539:')
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails('set statusline=%{', 'E540:')
|
2022-04-15 13:17:57 +01:00
|
|
|
call assert_fails('set statusline=%{%', 'E540:')
|
|
|
|
call assert_fails('set statusline=%{%}', 'E539:')
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails('set statusline=%(', 'E542:')
|
2021-01-17 13:48:03 +01:00
|
|
|
call assert_fails('set statusline=%)', 'E542:')
|
2022-04-15 13:17:57 +01:00
|
|
|
call assert_fails('set tabline=%$', 'E539:')
|
|
|
|
call assert_fails('set tabline=%{', 'E540:')
|
|
|
|
call assert_fails('set tabline=%{%', 'E540:')
|
|
|
|
call assert_fails('set tabline=%{%}', 'E539:')
|
|
|
|
call assert_fails('set tabline=%(', 'E542:')
|
|
|
|
call assert_fails('set tabline=%)', 'E542:')
|
2021-01-17 13:48:03 +01:00
|
|
|
|
2017-02-23 17:59:22 +01:00
|
|
|
if has('cursorshape')
|
|
|
|
" This invalid value for 'guicursor' used to cause Vim to crash.
|
|
|
|
call assert_fails('set guicursor=i-ci,r-cr:h', 'E545:')
|
|
|
|
call assert_fails('set guicursor=i-ci', 'E545:')
|
|
|
|
call assert_fails('set guicursor=x', 'E545:')
|
2020-03-22 14:41:22 +01:00
|
|
|
call assert_fails('set guicursor=x:', 'E546:')
|
2017-02-23 17:59:22 +01:00
|
|
|
call assert_fails('set guicursor=r-cr:horx', 'E548:')
|
|
|
|
call assert_fails('set guicursor=r-cr:hor0', 'E549:')
|
|
|
|
endif
|
2020-03-22 14:41:22 +01:00
|
|
|
if has('mouseshape')
|
|
|
|
call assert_fails('se mouseshape=i-r:x', 'E547:')
|
|
|
|
endif
|
2023-02-23 15:05:22 +00:00
|
|
|
|
|
|
|
" Test for 'backupext' and 'patchmode' set to the same value
|
|
|
|
set backupext=.bak
|
|
|
|
set patchmode=.patch
|
|
|
|
call assert_fails('set patchmode=.bak', 'E589:')
|
|
|
|
call assert_equal('.patch', &patchmode)
|
|
|
|
call assert_fails('set backupext=.patch', 'E589:')
|
|
|
|
call assert_equal('.bak', &backupext)
|
|
|
|
set backupext& patchmode&
|
|
|
|
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails('set winminheight=10 winheight=9', 'E591:')
|
2020-04-12 13:50:26 +02:00
|
|
|
set winminheight& winheight&
|
|
|
|
set winheight=10 winminheight=10
|
|
|
|
call assert_fails('set winheight=9', 'E591:')
|
|
|
|
set winminheight& winheight&
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails('set winminwidth=10 winwidth=9', 'E592:')
|
2020-04-12 13:50:26 +02:00
|
|
|
set winminwidth& winwidth&
|
|
|
|
call assert_fails('set winwidth=9 winminwidth=10', 'E592:')
|
|
|
|
set winwidth& winminwidth&
|
2017-02-04 15:53:32 +01:00
|
|
|
call assert_fails("set showbreak=\x01", 'E595:')
|
|
|
|
call assert_fails('set t_foo=', 'E846:')
|
2020-04-11 17:09:31 +02:00
|
|
|
call assert_fails('set tabstop??', 'E488:')
|
|
|
|
call assert_fails('set wrapscan!!', 'E488:')
|
|
|
|
call assert_fails('set tabstop&&', 'E488:')
|
|
|
|
call assert_fails('set wrapscan<<', 'E488:')
|
|
|
|
call assert_fails('set wrapscan=1', 'E474:')
|
|
|
|
call assert_fails('set autoindent@', 'E488:')
|
|
|
|
call assert_fails('set wildchar=<abc>', 'E474:')
|
|
|
|
call assert_fails('set cmdheight=1a', 'E521:')
|
2020-04-12 13:50:26 +02:00
|
|
|
call assert_fails('set invcmdheight', 'E474:')
|
2021-01-17 13:48:03 +01:00
|
|
|
if has('python') || has('python3')
|
2020-04-11 17:09:31 +02:00
|
|
|
call assert_fails('set pyxversion=6', 'E474:')
|
|
|
|
endif
|
2020-04-12 13:50:26 +02:00
|
|
|
call assert_fails("let &tabstop='ab'", 'E521:')
|
2020-09-23 22:38:05 +02:00
|
|
|
call assert_fails('set spellcapcheck=%\\(', 'E54:')
|
2021-01-17 13:48:03 +01:00
|
|
|
call assert_fails('set sessionoptions=curdir,sesdir', 'E474:')
|
|
|
|
call assert_fails('set foldmarker={{{,', 'E474:')
|
|
|
|
call assert_fails('set sessionoptions=sesdir,curdir', 'E474:')
|
2022-08-09 12:53:14 +01:00
|
|
|
setlocal listchars=trail:·
|
|
|
|
call assert_fails('set ambiwidth=double', 'E834:')
|
|
|
|
setlocal listchars=trail:-
|
|
|
|
setglobal listchars=trail:·
|
|
|
|
call assert_fails('set ambiwidth=double', 'E834:')
|
2021-01-17 13:48:03 +01:00
|
|
|
set listchars&
|
2022-08-09 12:53:14 +01:00
|
|
|
setlocal fillchars=stl:·
|
|
|
|
call assert_fails('set ambiwidth=double', 'E835:')
|
|
|
|
setlocal fillchars=stl:-
|
|
|
|
setglobal fillchars=stl:·
|
|
|
|
call assert_fails('set ambiwidth=double', 'E835:')
|
2021-01-17 13:48:03 +01:00
|
|
|
set fillchars&
|
|
|
|
call assert_fails('set fileencoding=latin1,utf-8', 'E474:')
|
|
|
|
set nomodifiable
|
|
|
|
call assert_fails('set fileencoding=latin1', 'E21:')
|
|
|
|
set modifiable&
|
2021-06-12 13:46:41 +02:00
|
|
|
call assert_fails('set t_#-&', 'E522:')
|
2023-02-13 16:10:04 +00:00
|
|
|
call assert_fails('let &formatoptions = "?"', 'E539:')
|
|
|
|
call assert_fails('call setbufvar("", "&formatoptions", "?")', 'E539:')
|
2016-11-25 22:04:13 +01:00
|
|
|
endfunc
|
2017-02-19 21:07:04 +01:00
|
|
|
|
2022-02-22 12:34:28 +00:00
|
|
|
func Test_set_encoding()
|
|
|
|
let save_encoding = &encoding
|
|
|
|
|
|
|
|
set enc=iso8859-1
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
set enc=iso8859_1
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
set enc=iso-8859-1
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
set enc=iso_8859_1
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
set enc=iso88591
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
set enc=iso8859
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
set enc=iso-8859
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
set enc=iso_8859
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
call assert_fails('set enc=iso8858', 'E474:')
|
|
|
|
call assert_equal('latin1', &enc)
|
|
|
|
|
|
|
|
let &encoding = save_encoding
|
|
|
|
endfunc
|
|
|
|
|
2019-10-19 20:18:47 +02:00
|
|
|
func CheckWasSet(name)
|
|
|
|
let verb_cm = execute('verbose set ' .. a:name .. '?')
|
|
|
|
call assert_match('Last set from.*test_options.vim', verb_cm)
|
|
|
|
endfunc
|
|
|
|
func CheckWasNotSet(name)
|
|
|
|
let verb_cm = execute('verbose set ' .. a:name .. '?')
|
|
|
|
call assert_notmatch('Last set from', verb_cm)
|
|
|
|
endfunc
|
|
|
|
|
2018-10-02 14:45:10 +02:00
|
|
|
" Must be executed before other tests that set 'term'.
|
|
|
|
func Test_000_term_option_verbose()
|
2019-08-07 23:07:07 +02:00
|
|
|
CheckNotGui
|
|
|
|
|
2019-10-19 20:18:47 +02:00
|
|
|
call CheckWasNotSet('t_cm')
|
2018-10-02 14:45:10 +02:00
|
|
|
|
|
|
|
let term_save = &term
|
|
|
|
set term=ansi
|
2019-10-19 20:18:47 +02:00
|
|
|
call CheckWasSet('t_cm')
|
2018-10-02 14:45:10 +02:00
|
|
|
let &term = term_save
|
|
|
|
endfunc
|
|
|
|
|
2019-10-19 20:18:47 +02:00
|
|
|
func Test_copy_context()
|
|
|
|
setlocal list
|
|
|
|
call CheckWasSet('list')
|
|
|
|
split
|
|
|
|
call CheckWasSet('list')
|
|
|
|
quit
|
|
|
|
setlocal nolist
|
|
|
|
|
|
|
|
set ai
|
|
|
|
call CheckWasSet('ai')
|
|
|
|
set filetype=perl
|
|
|
|
call CheckWasSet('filetype')
|
|
|
|
set fo=tcroq
|
|
|
|
call CheckWasSet('fo')
|
|
|
|
|
|
|
|
split Xsomebuf
|
|
|
|
call CheckWasSet('ai')
|
|
|
|
call CheckWasNotSet('filetype')
|
|
|
|
call CheckWasSet('fo')
|
|
|
|
endfunc
|
|
|
|
|
2017-02-19 21:07:04 +01:00
|
|
|
func Test_set_ttytype()
|
2019-08-07 23:07:07 +02:00
|
|
|
CheckUnix
|
|
|
|
CheckNotGui
|
|
|
|
|
|
|
|
" Setting 'ttytype' used to cause a double-free when exiting vim and
|
|
|
|
" when vim is compiled with -DEXITFREE.
|
|
|
|
set ttytype=ansi
|
|
|
|
call assert_equal('ansi', &ttytype)
|
|
|
|
call assert_equal(&ttytype, &term)
|
|
|
|
set ttytype=xterm
|
|
|
|
call assert_equal('xterm', &ttytype)
|
|
|
|
call assert_equal(&ttytype, &term)
|
|
|
|
try
|
|
|
|
set ttytype=
|
|
|
|
call assert_report('set ttytype= did not fail')
|
2021-02-01 18:39:47 +01:00
|
|
|
catch /E529/
|
2019-08-07 23:07:07 +02:00
|
|
|
endtry
|
|
|
|
|
|
|
|
" Some systems accept any terminal name and return dumb settings,
|
|
|
|
" check for failure of finding the entry and for missing 'cm' entry.
|
|
|
|
try
|
|
|
|
set ttytype=xxx
|
|
|
|
call assert_report('set ttytype=xxx did not fail')
|
|
|
|
catch /E522\|E437/
|
|
|
|
endtry
|
|
|
|
|
|
|
|
set ttytype&
|
|
|
|
call assert_equal(&ttytype, &term)
|
2020-04-06 21:35:05 +02:00
|
|
|
|
|
|
|
if has('gui') && !has('gui_running')
|
|
|
|
call assert_fails('set term=gui', 'E531:')
|
|
|
|
endif
|
2017-02-19 21:07:04 +01:00
|
|
|
endfunc
|
2017-02-25 20:40:46 +01:00
|
|
|
|
|
|
|
func Test_set_all()
|
|
|
|
set tw=75
|
|
|
|
set iskeyword=a-z,A-Z
|
|
|
|
set nosplitbelow
|
|
|
|
let out = execute('set all')
|
|
|
|
call assert_match('textwidth=75', out)
|
|
|
|
call assert_match('iskeyword=a-z,A-Z', out)
|
|
|
|
call assert_match('nosplitbelow', out)
|
|
|
|
set tw& iskeyword& splitbelow&
|
|
|
|
endfunc
|
|
|
|
|
2020-01-18 15:53:19 +01:00
|
|
|
func Test_set_one_column()
|
|
|
|
let out_mult = execute('set all')->split("\n")
|
|
|
|
let out_one = execute('set! all')->split("\n")
|
2020-03-23 19:28:44 +01:00
|
|
|
call assert_true(len(out_mult) < len(out_one))
|
2020-01-18 15:53:19 +01:00
|
|
|
endfunc
|
|
|
|
|
2017-02-25 20:40:46 +01:00
|
|
|
func Test_set_values()
|
2020-06-22 21:34:30 +02:00
|
|
|
" opt_test.vim is generated from ../optiondefs.h using gen_opt_test.vim
|
2017-02-25 20:40:46 +01:00
|
|
|
if filereadable('opt_test.vim')
|
|
|
|
source opt_test.vim
|
2017-03-07 22:33:32 +01:00
|
|
|
else
|
|
|
|
throw 'Skipped: opt_test.vim does not exist'
|
2017-02-25 20:40:46 +01:00
|
|
|
endif
|
2019-12-27 13:49:24 +01:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_renderoptions()
|
|
|
|
" Only do this for Windows Vista and later, fails on Windows XP and earlier.
|
|
|
|
" Doesn't hurt to do this on a non-Windows system.
|
|
|
|
if windowsversion() !~ '^[345]\.'
|
|
|
|
set renderoptions=type:directx
|
|
|
|
set rop=type:directx
|
|
|
|
endif
|
2017-02-25 20:40:46 +01:00
|
|
|
endfunc
|
2017-04-20 22:57:27 +02:00
|
|
|
|
|
|
|
func ResetIndentexpr()
|
|
|
|
set indentexpr=
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_set_indentexpr()
|
|
|
|
" this was causing usage of freed memory
|
|
|
|
set indentexpr=ResetIndentexpr()
|
|
|
|
new
|
|
|
|
call feedkeys("i\<c-f>", 'x')
|
|
|
|
call assert_equal('', &indentexpr)
|
|
|
|
bwipe!
|
|
|
|
endfunc
|
2018-04-12 21:37:34 +02:00
|
|
|
|
|
|
|
func Test_backupskip()
|
2019-01-30 21:51:27 +01:00
|
|
|
" Option 'backupskip' may contain several comma-separated path
|
|
|
|
" specifications if one or more of the environment variables TMPDIR, TMP,
|
|
|
|
" or TEMP is defined. To simplify testing, convert the string value into a
|
|
|
|
" list.
|
|
|
|
let bsklist = split(&bsk, ',')
|
|
|
|
|
2018-04-12 21:37:34 +02:00
|
|
|
if has("mac")
|
2019-01-30 21:51:27 +01:00
|
|
|
let found = (index(bsklist, '/private/tmp/*') >= 0)
|
|
|
|
call assert_true(found, '/private/tmp not in option bsk: ' . &bsk)
|
2018-04-12 21:37:34 +02:00
|
|
|
elseif has("unix")
|
2019-01-30 21:51:27 +01:00
|
|
|
let found = (index(bsklist, '/tmp/*') >= 0)
|
|
|
|
call assert_true(found, '/tmp not in option bsk: ' . &bsk)
|
|
|
|
endif
|
|
|
|
|
|
|
|
" If our test platform is Windows, the path(s) in option bsk will use
|
|
|
|
" backslash for the path separator and the components could be in short
|
|
|
|
" (8.3) format. As such, we need to replace the backslashes with forward
|
|
|
|
" slashes and convert the path components to long format. The expand()
|
|
|
|
" function will do this but it cannot handle comma-separated paths. This is
|
|
|
|
" why bsk was converted from a string into a list of strings above.
|
|
|
|
"
|
|
|
|
" One final complication is that the wildcard "/*" is at the end of each
|
|
|
|
" path and so expand() might return a list of matching files. To prevent
|
|
|
|
" this, we need to remove the wildcard before calling expand() and then
|
|
|
|
" append it afterwards.
|
|
|
|
if has('win32')
|
|
|
|
let item_nbr = 0
|
|
|
|
while item_nbr < len(bsklist)
|
|
|
|
let path_spec = bsklist[item_nbr]
|
|
|
|
let path_spec = strcharpart(path_spec, 0, strlen(path_spec)-2)
|
|
|
|
let path_spec = substitute(expand(path_spec), '\\', '/', 'g')
|
|
|
|
let bsklist[item_nbr] = path_spec . '/*'
|
|
|
|
let item_nbr += 1
|
|
|
|
endwhile
|
2018-04-12 21:37:34 +02:00
|
|
|
endif
|
|
|
|
|
2019-01-30 21:51:27 +01:00
|
|
|
" Option bsk will also include these environment variables if defined.
|
|
|
|
" If they're defined, verify they appear in the option value.
|
|
|
|
for var in ['$TMPDIR', '$TMP', '$TEMP']
|
2018-04-12 21:37:34 +02:00
|
|
|
if exists(var)
|
|
|
|
let varvalue = substitute(expand(var), '\\', '/', 'g')
|
2019-01-30 22:36:18 +01:00
|
|
|
let varvalue = substitute(varvalue, '/$', '', '')
|
|
|
|
let varvalue .= '/*'
|
|
|
|
let found = (index(bsklist, varvalue) >= 0)
|
|
|
|
call assert_true(found, var . ' (' . varvalue . ') not in option bsk: ' . &bsk)
|
2018-04-12 21:37:34 +02:00
|
|
|
endif
|
|
|
|
endfor
|
2019-06-12 19:05:48 +02:00
|
|
|
|
2020-09-12 14:53:53 +02:00
|
|
|
" Duplicates from environment variables should be filtered out (option has
|
|
|
|
" P_NODUP). Run this in a separate instance and write v:errors in a file,
|
|
|
|
" so that we see what happens on startup.
|
|
|
|
let after =<< trim [CODE]
|
|
|
|
let bsklist = split(&backupskip, ',')
|
|
|
|
call assert_equal(uniq(copy(bsklist)), bsklist)
|
|
|
|
call writefile(['errors:'] + v:errors, 'Xtestout')
|
|
|
|
qall
|
|
|
|
[CODE]
|
2022-09-30 21:57:11 +01:00
|
|
|
call writefile(after, 'Xafter', 'D')
|
2020-09-12 14:53:53 +02:00
|
|
|
let cmd = GetVimProg() . ' --not-a-term -S Xafter --cmd "set enc=utf8"'
|
|
|
|
|
|
|
|
let saveenv = {}
|
|
|
|
for var in ['TMPDIR', 'TMP', 'TEMP']
|
|
|
|
let saveenv[var] = getenv(var)
|
|
|
|
call setenv(var, '/duplicate/path')
|
|
|
|
endfor
|
|
|
|
|
|
|
|
exe 'silent !' . cmd
|
|
|
|
call assert_equal(['errors:'], readfile('Xtestout'))
|
|
|
|
|
|
|
|
" restore environment variables
|
|
|
|
for var in ['TMPDIR', 'TMP', 'TEMP']
|
|
|
|
call setenv(var, saveenv[var])
|
|
|
|
endfor
|
|
|
|
|
|
|
|
call delete('Xtestout')
|
|
|
|
|
2019-06-12 19:05:48 +02:00
|
|
|
" Duplicates should be filtered out (option has P_NODUP)
|
|
|
|
let backupskip = &backupskip
|
|
|
|
set backupskip=
|
|
|
|
set backupskip+=/test/dir
|
|
|
|
set backupskip+=/other/dir
|
|
|
|
set backupskip+=/test/dir
|
|
|
|
call assert_equal('/test/dir,/other/dir', &backupskip)
|
|
|
|
let &backupskip = backupskip
|
2018-04-12 21:37:34 +02:00
|
|
|
endfunc
|
2018-05-13 18:05:33 +02:00
|
|
|
|
2022-10-03 11:23:02 +01:00
|
|
|
func Test_buf_copy_winopt()
|
2018-08-23 22:20:35 +02:00
|
|
|
set hidden
|
|
|
|
|
|
|
|
" Test copy option from current buffer in window
|
|
|
|
split
|
|
|
|
enew
|
|
|
|
setlocal numberwidth=5
|
|
|
|
wincmd w
|
|
|
|
call assert_equal(4,&numberwidth)
|
|
|
|
bnext
|
|
|
|
call assert_equal(5,&numberwidth)
|
|
|
|
bw!
|
|
|
|
call assert_equal(4,&numberwidth)
|
|
|
|
|
|
|
|
" Test copy value from window that used to be display the buffer
|
|
|
|
split
|
|
|
|
enew
|
|
|
|
setlocal numberwidth=6
|
|
|
|
bnext
|
|
|
|
wincmd w
|
|
|
|
call assert_equal(4,&numberwidth)
|
|
|
|
bnext
|
|
|
|
call assert_equal(6,&numberwidth)
|
|
|
|
bw!
|
|
|
|
|
|
|
|
" Test that if buffer is current, don't use the stale cached value
|
|
|
|
" from the last time the buffer was displayed.
|
|
|
|
split
|
|
|
|
enew
|
|
|
|
setlocal numberwidth=7
|
|
|
|
bnext
|
|
|
|
bnext
|
|
|
|
setlocal numberwidth=8
|
|
|
|
wincmd w
|
|
|
|
call assert_equal(4,&numberwidth)
|
|
|
|
bnext
|
|
|
|
call assert_equal(8,&numberwidth)
|
|
|
|
bw!
|
|
|
|
|
|
|
|
" Test value is not copied if window already has seen the buffer
|
|
|
|
enew
|
|
|
|
split
|
|
|
|
setlocal numberwidth=9
|
|
|
|
bnext
|
|
|
|
setlocal numberwidth=10
|
|
|
|
wincmd w
|
|
|
|
call assert_equal(4,&numberwidth)
|
|
|
|
bnext
|
|
|
|
call assert_equal(4,&numberwidth)
|
|
|
|
bw!
|
|
|
|
|
|
|
|
set hidden&
|
2018-05-13 18:05:33 +02:00
|
|
|
endfunc
|
2018-06-24 16:53:35 +02:00
|
|
|
|
2022-10-03 11:23:02 +01:00
|
|
|
def Test_split_copy_options()
|
|
|
|
var values = [
|
|
|
|
['cursorbind', true, false],
|
|
|
|
['fillchars', '"vert:-"', '"' .. &fillchars .. '"'],
|
|
|
|
['list', true, 0],
|
|
|
|
['listchars', '"space:-"', '"' .. &listchars .. '"'],
|
|
|
|
['number', true, 0],
|
|
|
|
['relativenumber', true, false],
|
|
|
|
['scrollbind', true, false],
|
|
|
|
['smoothscroll', true, false],
|
|
|
|
['virtualedit', '"block"', '"' .. &virtualedit .. '"'],
|
|
|
|
['wincolor', '"Search"', '"' .. &wincolor .. '"'],
|
|
|
|
['wrap', false, true],
|
|
|
|
]
|
|
|
|
if has('linebreak')
|
|
|
|
values += [
|
|
|
|
['breakindent', true, false],
|
|
|
|
['breakindentopt', '"min:5"', '"' .. &breakindentopt .. '"'],
|
|
|
|
['linebreak', true, false],
|
|
|
|
['numberwidth', 7, 4],
|
|
|
|
['showbreak', '"++"', '"' .. &showbreak .. '"'],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('rightleft')
|
|
|
|
values += [
|
|
|
|
['rightleft', true, false],
|
|
|
|
['rightleftcmd', '"search"', '"' .. &rightleftcmd .. '"'],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('statusline')
|
|
|
|
values += [
|
|
|
|
['statusline', '"---%f---"', '"' .. &statusline .. '"'],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('spell')
|
|
|
|
values += [
|
|
|
|
['spell', true, false],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('syntax')
|
|
|
|
values += [
|
|
|
|
['cursorcolumn', true, false],
|
|
|
|
['cursorline', true, false],
|
|
|
|
['cursorlineopt', '"screenline"', '"' .. &cursorlineopt .. '"'],
|
|
|
|
['colorcolumn', '"+1"', '"' .. &colorcolumn .. '"'],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('diff')
|
|
|
|
values += [
|
|
|
|
['diff', true, false],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('conceal')
|
|
|
|
values += [
|
|
|
|
['concealcursor', '"nv"', '"' .. &concealcursor .. '"'],
|
|
|
|
['conceallevel', '3', &conceallevel],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('terminal')
|
|
|
|
values += [
|
|
|
|
['termwinkey', '"<C-X>"', '"' .. &termwinkey .. '"'],
|
|
|
|
['termwinsize', '"10x20"', '"' .. &termwinsize .. '"'],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('folding')
|
|
|
|
values += [
|
|
|
|
['foldcolumn', 5, &foldcolumn],
|
|
|
|
['foldenable', false, true],
|
|
|
|
['foldexpr', '"2 + 3"', '"' .. &foldexpr .. '"'],
|
|
|
|
['foldignore', '"+="', '"' .. &foldignore .. '"'],
|
|
|
|
['foldlevel', 4, &foldlevel],
|
|
|
|
['foldmarker', '">>,<<"', '"' .. &foldmarker .. '"'],
|
|
|
|
['foldmethod', '"marker"', '"' .. &foldmethod .. '"'],
|
|
|
|
['foldminlines', 3, &foldminlines],
|
|
|
|
['foldnestmax', 17, &foldnestmax],
|
|
|
|
['foldtext', '"closed"', '"' .. &foldtext .. '"'],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
if has('signs')
|
|
|
|
values += [
|
|
|
|
['signcolumn', '"number"', '"' .. &signcolumn .. '"'],
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
|
|
|
|
# set options to non-default value
|
|
|
|
for item in values
|
|
|
|
exe $'&l:{item[0]} = {item[1]}'
|
|
|
|
endfor
|
|
|
|
|
|
|
|
# check values are set in new window
|
|
|
|
split
|
|
|
|
for item in values
|
|
|
|
exe $'assert_equal({item[1]}, &{item[0]}, "{item[0]}")'
|
|
|
|
endfor
|
|
|
|
|
|
|
|
# restore
|
|
|
|
close
|
|
|
|
for item in values
|
|
|
|
exe $'&l:{item[0]} = {item[2]}'
|
|
|
|
endfor
|
|
|
|
enddef
|
|
|
|
|
2018-06-24 16:53:35 +02:00
|
|
|
func Test_shortmess_F()
|
|
|
|
new
|
|
|
|
call assert_match('\[No Name\]', execute('file'))
|
|
|
|
set shortmess+=F
|
|
|
|
call assert_match('\[No Name\]', execute('file'))
|
|
|
|
call assert_match('^\s*$', execute('file foo'))
|
|
|
|
call assert_match('foo', execute('file'))
|
|
|
|
set shortmess-=F
|
|
|
|
call assert_match('bar', execute('file bar'))
|
|
|
|
call assert_match('bar', execute('file'))
|
|
|
|
set shortmess&
|
|
|
|
bwipe
|
|
|
|
endfunc
|
2018-08-21 18:50:18 +02:00
|
|
|
|
|
|
|
func Test_shortmess_F2()
|
|
|
|
e file1
|
|
|
|
e file2
|
|
|
|
call assert_match('file1', execute('bn', ''))
|
|
|
|
call assert_match('file2', execute('bn', ''))
|
|
|
|
set shortmess+=F
|
|
|
|
call assert_true(empty(execute('bn', '')))
|
2019-05-16 20:29:44 +02:00
|
|
|
call assert_false(test_getvalue('need_fileinfo'))
|
2018-08-21 18:50:18 +02:00
|
|
|
call assert_true(empty(execute('bn', '')))
|
2019-09-08 18:58:44 +02:00
|
|
|
call assert_false('need_fileinfo'->test_getvalue())
|
2018-08-21 18:50:18 +02:00
|
|
|
set hidden
|
|
|
|
call assert_true(empty(execute('bn', '')))
|
2019-05-16 20:29:44 +02:00
|
|
|
call assert_false(test_getvalue('need_fileinfo'))
|
2018-08-21 18:50:18 +02:00
|
|
|
call assert_true(empty(execute('bn', '')))
|
2019-05-16 20:29:44 +02:00
|
|
|
call assert_false(test_getvalue('need_fileinfo'))
|
2018-08-21 18:50:18 +02:00
|
|
|
set nohidden
|
|
|
|
call assert_true(empty(execute('bn', '')))
|
2019-05-16 20:29:44 +02:00
|
|
|
call assert_false(test_getvalue('need_fileinfo'))
|
2018-08-21 18:50:18 +02:00
|
|
|
call assert_true(empty(execute('bn', '')))
|
2019-05-16 20:29:44 +02:00
|
|
|
call assert_false(test_getvalue('need_fileinfo'))
|
2018-08-21 18:50:18 +02:00
|
|
|
set shortmess&
|
|
|
|
call assert_match('file1', execute('bn', ''))
|
|
|
|
call assert_match('file2', execute('bn', ''))
|
|
|
|
bwipe
|
|
|
|
bwipe
|
2022-09-22 13:44:00 +01:00
|
|
|
call assert_fails('call test_getvalue("abc")', 'E475:')
|
2018-08-21 18:50:18 +02:00
|
|
|
endfunc
|
2019-01-31 18:26:10 +01:00
|
|
|
|
|
|
|
func Test_local_scrolloff()
|
|
|
|
set so=5
|
|
|
|
set siso=7
|
|
|
|
split
|
|
|
|
call assert_equal(5, &so)
|
|
|
|
setlocal so=3
|
|
|
|
call assert_equal(3, &so)
|
|
|
|
wincmd w
|
|
|
|
call assert_equal(5, &so)
|
|
|
|
wincmd w
|
|
|
|
setlocal so<
|
|
|
|
call assert_equal(5, &so)
|
|
|
|
setlocal so=0
|
|
|
|
call assert_equal(0, &so)
|
|
|
|
setlocal so=-1
|
|
|
|
call assert_equal(5, &so)
|
|
|
|
|
|
|
|
call assert_equal(7, &siso)
|
|
|
|
setlocal siso=3
|
|
|
|
call assert_equal(3, &siso)
|
|
|
|
wincmd w
|
|
|
|
call assert_equal(7, &siso)
|
|
|
|
wincmd w
|
|
|
|
setlocal siso<
|
|
|
|
call assert_equal(7, &siso)
|
|
|
|
setlocal siso=0
|
|
|
|
call assert_equal(0, &siso)
|
|
|
|
setlocal siso=-1
|
|
|
|
call assert_equal(7, &siso)
|
|
|
|
|
|
|
|
close
|
|
|
|
set so&
|
|
|
|
set siso&
|
|
|
|
endfunc
|
2019-04-03 21:42:35 +02:00
|
|
|
|
|
|
|
func Test_writedelay()
|
2020-01-30 18:24:53 +01:00
|
|
|
CheckFunction reltimefloat
|
|
|
|
|
2019-04-03 21:42:35 +02:00
|
|
|
new
|
|
|
|
call setline(1, 'empty')
|
|
|
|
redraw
|
|
|
|
set writedelay=10
|
|
|
|
let start = reltime()
|
|
|
|
call setline(1, repeat('x', 70))
|
|
|
|
redraw
|
|
|
|
let elapsed = reltimefloat(reltime(start))
|
|
|
|
set writedelay=0
|
|
|
|
" With 'writedelay' set should take at least 30 * 10 msec
|
|
|
|
call assert_inrange(30 * 0.01, 999.0, elapsed)
|
|
|
|
|
|
|
|
bwipe!
|
2019-04-03 21:53:33 +02:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_visualbell()
|
2019-04-03 22:52:34 +02:00
|
|
|
set belloff=
|
2019-04-03 21:53:33 +02:00
|
|
|
set visualbell
|
|
|
|
call assert_beeps('normal 0h')
|
|
|
|
set novisualbell
|
2019-04-03 22:52:34 +02:00
|
|
|
set belloff=all
|
2019-04-03 21:42:35 +02:00
|
|
|
endfunc
|
2020-01-29 21:57:34 +01:00
|
|
|
|
|
|
|
" Test for the 'write' option
|
|
|
|
func Test_write()
|
|
|
|
new
|
|
|
|
call setline(1, ['L1'])
|
|
|
|
set nowrite
|
2022-09-02 21:55:50 +01:00
|
|
|
call assert_fails('write Xwrfile', 'E142:')
|
2020-01-29 21:57:34 +01:00
|
|
|
set write
|
|
|
|
close!
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Test for 'buftype' option
|
|
|
|
func Test_buftype()
|
|
|
|
new
|
|
|
|
call setline(1, ['L1'])
|
|
|
|
set buftype=nowrite
|
|
|
|
call assert_fails('write', 'E382:')
|
2020-03-19 12:38:34 +01:00
|
|
|
|
|
|
|
for val in ['', 'nofile', 'nowrite', 'acwrite', 'quickfix', 'help', 'terminal', 'prompt', 'popup']
|
|
|
|
exe 'set buftype=' .. val
|
2022-09-30 21:57:11 +01:00
|
|
|
call writefile(['something'], 'XBuftype', 'D')
|
2020-03-19 12:38:34 +01:00
|
|
|
call assert_fails('write XBuftype', 'E13:', 'with buftype=' .. val)
|
|
|
|
endfor
|
|
|
|
|
|
|
|
bwipe!
|
2020-01-29 21:57:34 +01:00
|
|
|
endfunc
|
|
|
|
|
2020-02-27 21:32:51 +01:00
|
|
|
" Test for the 'rightleftcmd' option
|
|
|
|
func Test_rightleftcmd()
|
|
|
|
CheckFeature rightleft
|
|
|
|
set rightleft
|
|
|
|
|
|
|
|
let g:l = []
|
|
|
|
func AddPos()
|
|
|
|
call add(g:l, screencol())
|
|
|
|
return ''
|
|
|
|
endfunc
|
|
|
|
cmap <expr> <F2> AddPos()
|
|
|
|
|
2022-07-23 06:25:29 +01:00
|
|
|
set rightleftcmd=
|
|
|
|
call feedkeys("/\<F2>abc\<Right>\<F2>\<Left>\<Left>\<F2>" ..
|
|
|
|
\ "\<Right>\<F2>\<Esc>", 'xt')
|
|
|
|
call assert_equal([2, 5, 3, 4], g:l)
|
|
|
|
|
|
|
|
let g:l = []
|
|
|
|
set rightleftcmd=search
|
2020-02-27 21:32:51 +01:00
|
|
|
call feedkeys("/\<F2>abc\<Left>\<F2>\<Right>\<Right>\<F2>" ..
|
|
|
|
\ "\<Left>\<F2>\<Esc>", 'xt')
|
|
|
|
call assert_equal([&co - 1, &co - 4, &co - 2, &co - 3], g:l)
|
|
|
|
|
|
|
|
cunmap <F2>
|
|
|
|
unlet g:l
|
|
|
|
set rightleftcmd&
|
|
|
|
set rightleft&
|
|
|
|
endfunc
|
|
|
|
|
2022-08-14 14:49:50 +01:00
|
|
|
" Test for the 'debug' option
|
2020-04-04 14:00:39 +02:00
|
|
|
func Test_debug_option()
|
2022-08-14 14:49:50 +01:00
|
|
|
" redraw to avoid matching previous messages
|
|
|
|
redraw
|
2020-04-04 14:00:39 +02:00
|
|
|
set debug=beep
|
|
|
|
exe "normal \<C-c>"
|
|
|
|
call assert_equal('Beep!', Screenline(&lines))
|
2022-08-14 14:49:50 +01:00
|
|
|
call assert_equal('line 4:', Screenline(&lines - 1))
|
|
|
|
" only match the final colon in the line that shows the source
|
|
|
|
call assert_match(':$', Screenline(&lines - 2))
|
2020-04-04 14:00:39 +02:00
|
|
|
set debug&
|
|
|
|
endfunc
|
|
|
|
|
2020-04-11 17:09:31 +02:00
|
|
|
" Test for the default CDPATH option
|
|
|
|
func Test_opt_default_cdpath()
|
|
|
|
let after =<< trim [CODE]
|
|
|
|
call assert_equal(',/path/to/dir1,/path/to/dir2', &cdpath)
|
|
|
|
call writefile(v:errors, 'Xtestout')
|
|
|
|
qall
|
|
|
|
[CODE]
|
|
|
|
if has('unix')
|
|
|
|
let $CDPATH='/path/to/dir1:/path/to/dir2'
|
|
|
|
else
|
|
|
|
let $CDPATH='/path/to/dir1;/path/to/dir2'
|
|
|
|
endif
|
|
|
|
if RunVim([], after, '')
|
|
|
|
call assert_equal([], readfile('Xtestout'))
|
|
|
|
call delete('Xtestout')
|
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Test for setting keycodes using set
|
|
|
|
func Test_opt_set_keycode()
|
|
|
|
call assert_fails('set <t_k1=l', 'E474:')
|
|
|
|
call assert_fails('set <Home=l', 'E474:')
|
|
|
|
set <t_k9>=abcd
|
|
|
|
call assert_equal('abcd', &t_k9)
|
|
|
|
set <t_k9>&
|
|
|
|
set <F9>=xyz
|
|
|
|
call assert_equal('xyz', &t_k9)
|
|
|
|
set <t_k9>&
|
2022-06-29 18:39:11 +01:00
|
|
|
|
|
|
|
" should we test all of them?
|
|
|
|
set t_Ce=testCe
|
|
|
|
set t_Cs=testCs
|
|
|
|
set t_Us=testUs
|
|
|
|
set t_ds=testds
|
|
|
|
set t_Ds=testDs
|
|
|
|
call assert_equal('testCe', &t_Ce)
|
|
|
|
call assert_equal('testCs', &t_Cs)
|
|
|
|
call assert_equal('testUs', &t_Us)
|
|
|
|
call assert_equal('testds', &t_ds)
|
|
|
|
call assert_equal('testDs', &t_Ds)
|
2020-04-11 17:09:31 +02:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Test for changing options in a sandbox
|
|
|
|
func Test_opt_sandbox()
|
|
|
|
for opt in ['backupdir', 'cdpath', 'exrc']
|
|
|
|
call assert_fails('sandbox set ' .. opt .. '?', 'E48:')
|
2020-04-12 13:50:26 +02:00
|
|
|
call assert_fails('sandbox let &' .. opt .. ' = 1', 'E48:')
|
2020-04-11 17:09:31 +02:00
|
|
|
endfor
|
2020-04-12 13:50:26 +02:00
|
|
|
call assert_fails('sandbox let &modelineexpr = 1', 'E48:')
|
2020-04-11 17:09:31 +02:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Test for setting an option with local value to global value
|
|
|
|
func Test_opt_local_to_global()
|
|
|
|
setglobal equalprg=gprg
|
|
|
|
setlocal equalprg=lprg
|
|
|
|
call assert_equal('gprg', &g:equalprg)
|
|
|
|
call assert_equal('lprg', &l:equalprg)
|
|
|
|
call assert_equal('lprg', &equalprg)
|
|
|
|
set equalprg<
|
|
|
|
call assert_equal('', &l:equalprg)
|
|
|
|
call assert_equal('gprg', &equalprg)
|
|
|
|
setglobal equalprg=gnewprg
|
|
|
|
setlocal equalprg=lnewprg
|
|
|
|
setlocal equalprg<
|
|
|
|
call assert_equal('gnewprg', &l:equalprg)
|
|
|
|
call assert_equal('gnewprg', &equalprg)
|
|
|
|
set equalprg&
|
2021-06-12 13:46:41 +02:00
|
|
|
|
|
|
|
" Test for setting the global/local value of a boolean option
|
|
|
|
setglobal autoread
|
|
|
|
setlocal noautoread
|
|
|
|
call assert_false(&autoread)
|
|
|
|
set autoread<
|
|
|
|
call assert_true(&autoread)
|
|
|
|
setglobal noautoread
|
|
|
|
setlocal autoread
|
|
|
|
setlocal autoread<
|
|
|
|
call assert_false(&autoread)
|
|
|
|
set autoread&
|
2020-04-11 17:09:31 +02:00
|
|
|
endfunc
|
|
|
|
|
2021-07-12 21:43:19 +02:00
|
|
|
func Test_set_in_sandbox()
|
|
|
|
" Some boolean options cannot be set in sandbox, some can.
|
|
|
|
call assert_fails('sandbox set modelineexpr', 'E48:')
|
|
|
|
sandbox set number
|
|
|
|
call assert_true(&number)
|
|
|
|
set number&
|
|
|
|
|
|
|
|
" Some boolean options cannot be set in sandbox, some can.
|
|
|
|
if has('python') || has('python3')
|
|
|
|
call assert_fails('sandbox set pyxversion=3', 'E48:')
|
|
|
|
endif
|
|
|
|
sandbox set tabstop=4
|
|
|
|
call assert_equal(4, &tabstop)
|
|
|
|
set tabstop&
|
|
|
|
|
|
|
|
" Some string options cannot be set in sandbox, some can.
|
|
|
|
call assert_fails('sandbox set backupdir=/tmp', 'E48:')
|
|
|
|
sandbox set filetype=perl
|
|
|
|
call assert_equal('perl', &filetype)
|
|
|
|
set filetype&
|
|
|
|
endfunc
|
|
|
|
|
2020-04-11 17:09:31 +02:00
|
|
|
" Test for incrementing, decrementing and multiplying a number option value
|
|
|
|
func Test_opt_num_op()
|
|
|
|
set shiftwidth=4
|
|
|
|
set sw+=2
|
|
|
|
call assert_equal(6, &sw)
|
|
|
|
set sw-=2
|
|
|
|
call assert_equal(4, &sw)
|
|
|
|
set sw^=2
|
|
|
|
call assert_equal(8, &sw)
|
|
|
|
set shiftwidth&
|
|
|
|
endfunc
|
|
|
|
|
2020-04-24 20:57:01 +02:00
|
|
|
" Test for setting option values using v:false and v:true
|
|
|
|
func Test_opt_boolean()
|
|
|
|
set number&
|
|
|
|
set number
|
|
|
|
call assert_equal(1, &nu)
|
|
|
|
set nonu
|
|
|
|
call assert_equal(0, &nu)
|
|
|
|
let &nu = v:true
|
|
|
|
call assert_equal(1, &nu)
|
|
|
|
let &nu = v:false
|
|
|
|
call assert_equal(0, &nu)
|
|
|
|
set number&
|
|
|
|
endfunc
|
|
|
|
|
2020-06-22 21:34:30 +02:00
|
|
|
" Test for the 'window' option
|
|
|
|
func Test_window_opt()
|
|
|
|
" Needs only one open widow
|
|
|
|
%bw!
|
|
|
|
call setline(1, range(1, 8))
|
|
|
|
set window=5
|
|
|
|
exe "normal \<C-F>"
|
|
|
|
call assert_equal(4, line('w0'))
|
|
|
|
exe "normal \<C-F>"
|
|
|
|
call assert_equal(7, line('w0'))
|
|
|
|
exe "normal \<C-F>"
|
|
|
|
call assert_equal(8, line('w0'))
|
|
|
|
exe "normal \<C-B>"
|
|
|
|
call assert_equal(5, line('w0'))
|
|
|
|
exe "normal \<C-B>"
|
|
|
|
call assert_equal(2, line('w0'))
|
|
|
|
exe "normal \<C-B>"
|
|
|
|
call assert_equal(1, line('w0'))
|
|
|
|
set window=1
|
|
|
|
exe "normal gg\<C-F>"
|
|
|
|
call assert_equal(2, line('w0'))
|
|
|
|
exe "normal \<C-F>"
|
|
|
|
call assert_equal(3, line('w0'))
|
|
|
|
exe "normal \<C-B>"
|
|
|
|
call assert_equal(2, line('w0'))
|
|
|
|
exe "normal \<C-B>"
|
|
|
|
call assert_equal(1, line('w0'))
|
|
|
|
enew!
|
|
|
|
set window&
|
|
|
|
endfunc
|
|
|
|
|
2020-06-26 20:41:39 +02:00
|
|
|
" Test for the 'winminheight' option
|
|
|
|
func Test_opt_winminheight()
|
|
|
|
only!
|
|
|
|
let &winheight = &lines + 4
|
|
|
|
call assert_fails('let &winminheight = &lines + 2', 'E36:')
|
|
|
|
call assert_true(&winminheight <= &lines)
|
|
|
|
set winminheight&
|
|
|
|
set winheight&
|
|
|
|
endfunc
|
|
|
|
|
2021-03-01 21:02:46 +01:00
|
|
|
func Test_opt_winminheight_term()
|
|
|
|
CheckRunVimInTerminal
|
|
|
|
|
|
|
|
" The tabline should be taken into account.
|
|
|
|
let lines =<< trim END
|
|
|
|
set wmh=0 stal=2
|
|
|
|
below sp | wincmd _
|
|
|
|
below sp | wincmd _
|
|
|
|
below sp | wincmd _
|
|
|
|
below sp
|
|
|
|
END
|
2022-09-30 21:57:11 +01:00
|
|
|
call writefile(lines, 'Xwinminheight', 'D')
|
2021-03-01 21:02:46 +01:00
|
|
|
let buf = RunVimInTerminal('-S Xwinminheight', #{rows: 11})
|
|
|
|
call term_sendkeys(buf, ":set wmh=1\n")
|
|
|
|
call WaitForAssert({-> assert_match('E36: Not enough room', term_getline(buf, 11))})
|
|
|
|
|
|
|
|
call StopVimInTerminal(buf)
|
|
|
|
endfunc
|
|
|
|
|
2021-03-13 14:29:05 +01:00
|
|
|
func Test_opt_winminheight_term_tabs()
|
|
|
|
CheckRunVimInTerminal
|
|
|
|
|
|
|
|
" The tabline should be taken into account.
|
|
|
|
let lines =<< trim END
|
|
|
|
set wmh=0 stal=2
|
|
|
|
split
|
|
|
|
split
|
|
|
|
split
|
|
|
|
split
|
|
|
|
tabnew
|
|
|
|
END
|
2022-09-30 21:57:11 +01:00
|
|
|
call writefile(lines, 'Xwinminheight', 'D')
|
2021-03-13 14:29:05 +01:00
|
|
|
let buf = RunVimInTerminal('-S Xwinminheight', #{rows: 11})
|
|
|
|
call term_sendkeys(buf, ":set wmh=1\n")
|
|
|
|
call WaitForAssert({-> assert_match('E36: Not enough room', term_getline(buf, 11))})
|
|
|
|
|
|
|
|
call StopVimInTerminal(buf)
|
|
|
|
endfunc
|
|
|
|
|
2020-06-26 20:41:39 +02:00
|
|
|
" Test for the 'winminwidth' option
|
|
|
|
func Test_opt_winminwidth()
|
|
|
|
only!
|
|
|
|
let &winwidth = &columns + 4
|
|
|
|
call assert_fails('let &winminwidth = &columns + 2', 'E36:')
|
|
|
|
call assert_true(&winminwidth <= &columns)
|
|
|
|
set winminwidth&
|
|
|
|
set winwidth&
|
|
|
|
endfunc
|
|
|
|
|
2020-08-07 19:12:41 +02:00
|
|
|
" Test for setting option value containing spaces with isfname+=32
|
|
|
|
func Test_isfname_with_options()
|
|
|
|
set isfname+=32
|
|
|
|
setlocal keywordprg=:term\ help.exe
|
|
|
|
call assert_equal(':term help.exe', &keywordprg)
|
|
|
|
set isfname&
|
|
|
|
setlocal keywordprg&
|
|
|
|
endfunc
|
|
|
|
|
2020-12-28 15:41:41 +01:00
|
|
|
" Test that resetting laststatus does change scroll option
|
|
|
|
func Test_opt_reset_scroll()
|
|
|
|
CheckRunVimInTerminal
|
|
|
|
let vimrc =<< trim [CODE]
|
|
|
|
set scroll=2
|
|
|
|
set laststatus=2
|
|
|
|
[CODE]
|
2022-09-30 21:57:11 +01:00
|
|
|
call writefile(vimrc, 'Xscroll', 'D')
|
2020-12-28 15:41:41 +01:00
|
|
|
let buf = RunVimInTerminal('-S Xscroll', {'rows': 16, 'cols': 45})
|
|
|
|
call term_sendkeys(buf, ":verbose set scroll?\n")
|
|
|
|
call WaitForAssert({-> assert_match('Last set.*window size', term_getline(buf, 15))})
|
|
|
|
call assert_match('^\s*scroll=7$', term_getline(buf, 14))
|
|
|
|
|
|
|
|
" clean up
|
2022-09-30 21:57:11 +01:00
|
|
|
call StopVimInTerminal(buf)
|
2020-12-28 15:41:41 +01:00
|
|
|
endfunc
|
|
|
|
|
2021-05-06 17:36:55 +02:00
|
|
|
" Check that VIM_POSIX env variable influences default value of 'cpo' and 'shm'
|
|
|
|
func Test_VIM_POSIX()
|
|
|
|
let saved_VIM_POSIX = getenv("VIM_POSIX")
|
|
|
|
|
|
|
|
call setenv('VIM_POSIX', "1")
|
|
|
|
let after =<< trim [CODE]
|
|
|
|
call writefile([&cpo, &shm], 'X_VIM_POSIX')
|
|
|
|
qall
|
|
|
|
[CODE]
|
|
|
|
if RunVim([], after, '')
|
|
|
|
call assert_equal(['aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>#{|&/\.;',
|
|
|
|
\ 'AS'], readfile('X_VIM_POSIX'))
|
|
|
|
endif
|
|
|
|
|
|
|
|
call setenv('VIM_POSIX', v:null)
|
|
|
|
let after =<< trim [CODE]
|
|
|
|
call writefile([&cpo, &shm], 'X_VIM_POSIX')
|
|
|
|
qall
|
|
|
|
[CODE]
|
|
|
|
if RunVim([], after, '')
|
|
|
|
call assert_equal(['aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>;',
|
|
|
|
\ 'S'], readfile('X_VIM_POSIX'))
|
|
|
|
endif
|
|
|
|
|
|
|
|
call delete('X_VIM_POSIX')
|
|
|
|
call setenv('VIM_POSIX', saved_VIM_POSIX)
|
|
|
|
endfunc
|
|
|
|
|
2021-06-12 13:46:41 +02:00
|
|
|
" Test for setting an option to a Vi or Vim default
|
|
|
|
func Test_opt_default()
|
|
|
|
set formatoptions&vi
|
|
|
|
call assert_equal('vt', &formatoptions)
|
|
|
|
set formatoptions&vim
|
|
|
|
call assert_equal('tcq', &formatoptions)
|
2021-06-13 20:27:36 +02:00
|
|
|
|
|
|
|
call assert_equal('ucs-bom,utf-8,default,latin1', &fencs)
|
|
|
|
set fencs=latin1
|
|
|
|
set fencs&
|
|
|
|
call assert_equal('ucs-bom,utf-8,default,latin1', &fencs)
|
|
|
|
set fencs=latin1
|
|
|
|
set all&
|
|
|
|
call assert_equal('ucs-bom,utf-8,default,latin1', &fencs)
|
2021-06-12 13:46:41 +02:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Test for the 'cmdheight' option
|
|
|
|
func Test_cmdheight()
|
|
|
|
%bw!
|
|
|
|
let ht = &lines
|
|
|
|
set cmdheight=9999
|
|
|
|
call assert_equal(1, winheight(0))
|
|
|
|
call assert_equal(ht - 1, &cmdheight)
|
|
|
|
set cmdheight&
|
|
|
|
endfunc
|
|
|
|
|
2021-11-21 11:36:04 +00:00
|
|
|
" To specify a control character as an option value, '^' can be used
|
2021-06-13 21:52:48 +02:00
|
|
|
func Test_opt_control_char()
|
|
|
|
set wildchar=^v
|
|
|
|
call assert_equal("\<C-V>", nr2char(&wildchar))
|
|
|
|
set wildcharm=^r
|
|
|
|
call assert_equal("\<C-R>", nr2char(&wildcharm))
|
|
|
|
" Bug: This doesn't work for the 'cedit' and 'termwinkey' options
|
|
|
|
set wildchar& wildcharm&
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Test for the 'errorbells' option
|
|
|
|
func Test_opt_errorbells()
|
|
|
|
set errorbells
|
|
|
|
call assert_beeps('s/a1b2/x1y2/')
|
|
|
|
set noerrorbells
|
|
|
|
endfunc
|
|
|
|
|
2021-07-12 21:43:19 +02:00
|
|
|
func Test_opt_scrolljump()
|
|
|
|
help
|
|
|
|
resize 10
|
|
|
|
|
|
|
|
" Test with positive 'scrolljump'.
|
|
|
|
set scrolljump=2
|
|
|
|
norm! Lj
|
|
|
|
call assert_equal({'lnum':11, 'leftcol':0, 'col':0, 'topfill':0,
|
|
|
|
\ 'topline':3, 'coladd':0, 'skipcol':0, 'curswant':0},
|
|
|
|
\ winsaveview())
|
|
|
|
|
|
|
|
" Test with negative 'scrolljump' (percentage of window height).
|
|
|
|
set scrolljump=-40
|
|
|
|
norm! ggLj
|
|
|
|
call assert_equal({'lnum':11, 'leftcol':0, 'col':0, 'topfill':0,
|
|
|
|
\ 'topline':5, 'coladd':0, 'skipcol':0, 'curswant':0},
|
|
|
|
\ winsaveview())
|
|
|
|
|
|
|
|
set scrolljump&
|
|
|
|
bw
|
|
|
|
endfunc
|
|
|
|
|
2021-12-11 12:28:08 +00:00
|
|
|
" Test for the 'cdhome' option
|
|
|
|
func Test_opt_cdhome()
|
|
|
|
if has('unix') || has('vms')
|
|
|
|
throw 'Skipped: only works on non-Unix'
|
|
|
|
endif
|
|
|
|
|
|
|
|
set cdhome&
|
|
|
|
call assert_equal(0, &cdhome)
|
|
|
|
set cdhome
|
|
|
|
|
|
|
|
" This paragraph is copied from Test_cd_no_arg().
|
|
|
|
let path = getcwd()
|
|
|
|
cd
|
|
|
|
call assert_equal($HOME, getcwd())
|
|
|
|
call assert_notequal(path, getcwd())
|
|
|
|
exe 'cd ' .. fnameescape(path)
|
|
|
|
call assert_equal(path, getcwd())
|
|
|
|
|
|
|
|
set cdhome&
|
|
|
|
endfunc
|
|
|
|
|
2022-05-08 21:10:56 +01:00
|
|
|
func Test_set_completion_2()
|
|
|
|
CheckOption termguicolors
|
|
|
|
|
|
|
|
" Test default option completion
|
|
|
|
set wildoptions=
|
|
|
|
call feedkeys(":set termg\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set termguicolors', @:)
|
|
|
|
|
|
|
|
call feedkeys(":set notermg\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set notermguicolors', @:)
|
|
|
|
|
|
|
|
" Test fuzzy option completion
|
|
|
|
set wildoptions=fuzzy
|
|
|
|
call feedkeys(":set termg\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set termguicolors termencoding', @:)
|
|
|
|
|
|
|
|
call feedkeys(":set notermg\<C-A>\<C-B>\"\<CR>", 'tx')
|
|
|
|
call assert_equal('"set notermguicolors', @:)
|
|
|
|
|
|
|
|
set wildoptions=
|
|
|
|
endfunc
|
|
|
|
|
2022-05-12 17:44:29 +01:00
|
|
|
func Test_switchbuf_reset()
|
|
|
|
set switchbuf=useopen
|
|
|
|
sblast
|
|
|
|
call assert_equal(1, winnr('$'))
|
|
|
|
set all&
|
|
|
|
call assert_equal('', &switchbuf)
|
|
|
|
sblast
|
|
|
|
call assert_equal(2, winnr('$'))
|
|
|
|
only!
|
|
|
|
endfunc
|
|
|
|
|
2022-09-22 13:57:32 +01:00
|
|
|
" :set empty string for global 'keywordprg' falls back to ":help"
|
|
|
|
func Test_keywordprg_empty()
|
|
|
|
let k = &keywordprg
|
|
|
|
set keywordprg=man
|
|
|
|
call assert_equal('man', &keywordprg)
|
|
|
|
set keywordprg=
|
|
|
|
call assert_equal(':help', &keywordprg)
|
|
|
|
set keywordprg=man
|
|
|
|
call assert_equal('man', &keywordprg)
|
|
|
|
call assert_equal("\n keywordprg=:help", execute('set kp= kp?'))
|
|
|
|
let &keywordprg = k
|
|
|
|
endfunc
|
|
|
|
|
2022-11-12 11:54:26 +00:00
|
|
|
" check that the very first buffer created does not have 'endoffile' set
|
|
|
|
func Test_endoffile_default()
|
|
|
|
let after =<< trim [CODE]
|
|
|
|
call writefile([execute('set eof?')], 'Xtestout')
|
|
|
|
qall!
|
|
|
|
[CODE]
|
|
|
|
if RunVim([], after, '')
|
|
|
|
call assert_equal(["\nnoendoffile"], readfile('Xtestout'))
|
|
|
|
endif
|
|
|
|
call delete('Xtestout')
|
|
|
|
endfunc
|
|
|
|
|
2023-02-13 16:10:04 +00:00
|
|
|
" Test for setting the 'lines' and 'columns' options to a minimum value
|
|
|
|
func Test_set_min_lines_columns()
|
|
|
|
let save_lines = &lines
|
|
|
|
let save_columns = &columns
|
|
|
|
|
|
|
|
let after =<< trim END
|
|
|
|
set nomore
|
|
|
|
let msg = []
|
|
|
|
let v:errmsg = ''
|
|
|
|
silent! let &columns=0
|
|
|
|
call add(msg, v:errmsg)
|
|
|
|
silent! set columns=0
|
|
|
|
call add(msg, v:errmsg)
|
|
|
|
silent! call setbufvar('', '&columns', 0)
|
|
|
|
call add(msg, v:errmsg)
|
|
|
|
"call writefile(msg, 'XResultsetminlines')
|
|
|
|
silent! let &lines=0
|
|
|
|
call add(msg, v:errmsg)
|
|
|
|
silent! set lines=0
|
|
|
|
call add(msg, v:errmsg)
|
|
|
|
silent! call setbufvar('', '&lines', 0)
|
|
|
|
call add(msg, v:errmsg)
|
|
|
|
call writefile(msg, 'XResultsetminlines')
|
|
|
|
qall!
|
|
|
|
END
|
|
|
|
if RunVim([], after, '')
|
|
|
|
call assert_equal(['E594: Need at least 12 columns',
|
|
|
|
\ 'E594: Need at least 12 columns: columns=0',
|
|
|
|
\ 'E594: Need at least 12 columns',
|
|
|
|
\ 'E593: Need at least 2 lines',
|
|
|
|
\ 'E593: Need at least 2 lines: lines=0',
|
|
|
|
\ 'E593: Need at least 2 lines',], readfile('XResultsetminlines'))
|
|
|
|
endif
|
|
|
|
|
|
|
|
call delete('XResultsetminlines')
|
|
|
|
let &lines = save_lines
|
|
|
|
let &columns = save_columns
|
|
|
|
endfunc
|
2022-09-22 13:57:32 +01:00
|
|
|
|
2023-02-23 15:05:22 +00:00
|
|
|
" Test for reverting a string option value if the new value is invalid.
|
|
|
|
func Test_string_option_revert_on_failure()
|
|
|
|
new
|
|
|
|
let optlist = [
|
|
|
|
\ ['ambiwidth', 'double', 'a123'],
|
|
|
|
\ ['background', 'dark', 'a123'],
|
|
|
|
\ ['backspace', 'eol', 'a123'],
|
|
|
|
\ ['backupcopy', 'no', 'a123'],
|
|
|
|
\ ['belloff', 'showmatch', 'a123'],
|
|
|
|
\ ['breakindentopt', 'min:10', 'list'],
|
|
|
|
\ ['bufhidden', 'wipe', 'a123'],
|
|
|
|
\ ['buftype', 'nowrite', 'a123'],
|
|
|
|
\ ['casemap', 'keepascii', 'a123'],
|
|
|
|
\ ['cedit', "\<C-Y>", 'z'],
|
|
|
|
\ ['colorcolumn', '10', 'z'],
|
|
|
|
\ ['commentstring', '#%s', 'a123'],
|
|
|
|
\ ['complete', '.,t', 'a'],
|
|
|
|
\ ['completefunc', 'MyCmplFunc', '1a-'],
|
|
|
|
\ ['completeopt', 'popup', 'a123'],
|
|
|
|
\ ['completepopup', 'width:20', 'border'],
|
|
|
|
\ ['concealcursor', 'v', 'xyz'],
|
|
|
|
\ ['cpoptions', 'HJ', '~'],
|
|
|
|
\ ['cryptmethod', 'zip', 'a123'],
|
|
|
|
\ ['cursorlineopt', 'screenline', 'a123'],
|
|
|
|
\ ['debug', 'throw', 'a123'],
|
|
|
|
\ ['diffopt', 'iwhite', 'a123'],
|
|
|
|
\ ['display', 'uhex', 'a123'],
|
|
|
|
\ ['eadirection', 'hor', 'a123'],
|
|
|
|
\ ['encoding', 'utf-8', 'a123'],
|
|
|
|
\ ['eventignore', 'TextYankPost', 'a123'],
|
|
|
|
\ ['fileencoding', 'utf-8', 'a123,'],
|
|
|
|
\ ['fileformat', 'mac', 'a123'],
|
|
|
|
\ ['fileformats', 'mac', 'a123'],
|
|
|
|
\ ['fillchars', 'diff:~', 'a123'],
|
|
|
|
\ ['foldclose', 'all', 'a123'],
|
|
|
|
\ ['foldmarker', '[[[,]]]', '[[['],
|
|
|
|
\ ['foldmethod', 'marker', 'a123'],
|
|
|
|
\ ['foldopen', 'percent', 'a123'],
|
|
|
|
\ ['formatoptions', 'an', '*'],
|
|
|
|
\ ['guicursor', 'n-v-c:block-Cursor/lCursor', 'n-v-c'],
|
|
|
|
\ ['helplang', 'en', 'a'],
|
|
|
|
\ ['highlight', '!:CursorColumn', '8:']
|
|
|
|
\ ]
|
|
|
|
if has('gui')
|
|
|
|
call add(optlist, ['browsedir', 'buffer', 'a123'])
|
|
|
|
endif
|
|
|
|
if has('clipboard_working')
|
|
|
|
call add(optlist, ['clipboard', 'unnamed', 'a123'])
|
|
|
|
endif
|
|
|
|
if has('win32')
|
|
|
|
call add(optlist, ['completeslash', 'slash', 'a123'])
|
|
|
|
endif
|
|
|
|
if has('cscope')
|
|
|
|
call add(optlist, ['cscopequickfix', 't-', 'z-'])
|
|
|
|
endif
|
|
|
|
if !has('win32')
|
|
|
|
call add(optlist, ['imactivatefunc', 'MyCmplFunc', '1a-'])
|
|
|
|
endif
|
|
|
|
for opt in optlist
|
|
|
|
exe $"let save_opt = &{opt[0]}"
|
|
|
|
exe $"let &{opt[0]} = '{opt[1]}'"
|
|
|
|
call assert_fails($"let &{opt[0]} = '{opt[2]}'", '', opt[0])
|
|
|
|
call assert_equal(opt[1], eval($"&{opt[0]}"), opt[0])
|
|
|
|
exe $"let &{opt[0]} = save_opt"
|
|
|
|
endfor
|
|
|
|
bw!
|
|
|
|
endfunc
|
|
|
|
|
2020-01-29 21:57:34 +01:00
|
|
|
" vim: shiftwidth=2 sts=2 expandtab
|