Mercurial > vim
view src/testdir/test_smartindent.vim @ 33399:95db67c7b754 v9.0.1958
patch 9.0.1958: cannot complete option values
Commit: https://github.com/vim/vim/commit/900894b09a95398dfc75599e9f0aa2ea25723384
Author: Yee Cheng Chin <ychin.git@gmail.com>
Date: Fri Sep 29 20:42:32 2023 +0200
patch 9.0.1958: cannot complete option values
Problem: cannot complete option values
Solution: Add completion functions for several options
Add cmdline tab-completion for setting string options
Add tab-completion for setting string options on the cmdline using
`:set=` (along with `:set+=` and `:set-=`).
The existing tab completion for setting options currently only works
when nothing is typed yet, and it only fills in with the existing value,
e.g. when the user does `:set diffopt=<Tab>` it will be completed to
`set diffopt=internal,filler,closeoff` and nothing else. This isn't too
useful as a user usually wants auto-complete to suggest all the possible
values, such as 'iblank', or 'algorithm:patience'.
For set= and set+=, this adds a new optional callback function for each
option that can be invoked when doing completion. This allows for each
option to have control over how completion works. For example, in
'diffopt', it will suggest the default enumeration, but if `algorithm:`
is selected, it will further suggest different algorithm types like
'meyers' and 'patience'. When using set=, the existing option value will
be filled in as the first choice to preserve the existing behavior. When
using set+= this won't happen as it doesn't make sense.
For flag list options (e.g. 'mouse' and 'guioptions'), completion will
take into account existing typed values (and in the case of set+=, the
existing option value) to make sure it doesn't suggest duplicates.
For set-=, there is a new `ExpandSettingSubtract` function which will
handle flag list and comma-separated options smartly, by only suggesting
values that currently exist in the option.
Note that Vim has some existing code that adds special handling for
'filetype', 'syntax', and misc dir options like 'backupdir'. This change
preserves them as they already work, instead of converting to the new
callback API for each option.
closes: #13182
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 29 Sep 2023 20:45:04 +0200 |
parents | 3942ea75b4c0 |
children |
line wrap: on
line source
" Tests for smartindent " Tests for not doing smart indenting when it isn't set. func Test_nosmartindent() new call append(0, [" some test text", \ " test text", \ "test text", \ " test text"]) set nocindent nosmartindent autoindent exe "normal! gg/some\<CR>" exe "normal! 2cc#test\<Esc>" call assert_equal(" #test", getline(1)) enew! | close endfunc func MyIndent() endfunc " When 'indentexpr' is set, setting 'si' has no effect. func Test_smartindent_has_no_effect() new exe "normal! i\<Tab>one\<Esc>" setlocal noautoindent smartindent indentexpr= exe "normal! Gotwo\<Esc>" call assert_equal("\ttwo", getline("$")) set indentexpr=MyIndent exe "normal! Gothree\<Esc>" call assert_equal("three", getline("$")) delfunction! MyIndent bwipe! endfunc " Test for inserting '{' and '} with smartindent func Test_smartindent_braces() new setlocal smartindent shiftwidth=4 call setline(1, [' if (a)', "\tif (b)", "\t return 1"]) normal 2ggO{ normal 3ggA { normal 4ggo} normal o} normal 4ggO#define FOO 1 call assert_equal([ \ ' if (a)', \ ' {', \ "\tif (b) {", \ '#define FOO 1', \ "\t return 1", \ "\t}", \ ' }' \ ], getline(1, '$')) close! endfunc " Test for adding a new line before and after comments with smartindent func Test_si_add_line_around_comment() new setlocal smartindent shiftwidth=4 call setline(1, [' A', '# comment1', '# comment2']) exe "normal GoC\<Esc>2GOB" call assert_equal([' A', ' B', '# comment1', '# comment2', ' C'], \ getline(1, '$')) close! endfunc " After a C style comment, indent for a following line should line up with the " line containing the start of the comment. func Test_si_indent_after_c_comment() new setlocal smartindent shiftwidth=4 fo+=ro exe "normal i\<C-t>/*\ncomment\n/\n#define FOOBAR\n75\<Esc>ggOabc" normal 3jOcont call assert_equal([' abc', ' /*', ' * comment', ' * cont', \ ' */', '#define FOOBAR', ' 75'], getline(1, '$')) close! endfunc " Test for indenting a statement after a if condition split across lines func Test_si_if_cond_split_across_lines() new setlocal smartindent shiftwidth=4 exe "normal i\<C-t>if (cond1 &&\n\<C-t>cond2) {\ni = 10;\n}" call assert_equal([' if (cond1 &&', "\t cond2) {", "\ti = 10;", \ ' }'], getline(1, '$')) close! endfunc " Test for inserting lines before and after a one line comment func Test_si_one_line_comment() new setlocal smartindent shiftwidth=4 exe "normal i\<C-t>abc;\n\<C-t>/* comment */" normal oi = 10; normal kOj = 1; call assert_equal([' abc;', "\tj = 1;", "\t/* comment */", "\ti = 10;"], \ getline(1, '$')) close! endfunc " Test for smartindent with a comment continued across multiple lines func Test_si_comment_line_continuation() new setlocal smartindent shiftwidth=4 call setline(1, ['# com1', '# com2 \', ' contd', '# com3', ' xyz']) normal ggOabc call assert_equal([' abc', '# com1', '# com2 \', ' contd', '# com3', \ ' xyz'], getline(1, '$')) close! endfunc " When 'paste' is set, 'smartindent' should not take effect. func Test_si_with_paste() new setlocal smartindent autoindent set paste " insert text that will trigger smartindent exe "norm! i {\nif (x)\ni = 1;\n#define FOO 1\nj = 2;\n}" exe "norm! Ok = 3;" exe "norm! 4G>>" call assert_equal([' {', 'if (x)', 'i = 1;', '#define FOO 1', \ 'j = 2;', 'k = 3;', '}'], getline(1, '$')) call assert_true(&smartindent) set nopaste %d _ exe "norm! i {\nif (x)\ni = 1;\n#define FOO 1\nj = 2;\n}" exe "norm! Ok = 3;" exe "norm! 4G>>" call assert_equal([' {', "\t if (x)", "\t\t i = 1;", \ '#define FOO 1', "\t\t j = 2;", "\t k = 3;", ' }'], \ getline(1, '$')) bw! endfunc func Test_si_after_completion() new setlocal ai smartindent indentexpr= call setline(1, 'foo foot') call feedkeys("o f\<C-X>\<C-N>#", 'tx') call assert_equal(' foo#', getline(2)) call setline(2, '') call feedkeys("1Go f\<C-X>\<C-N>}", 'tx') call assert_equal(' foo}', getline(2)) bwipe! endfunc func Test_no_si_after_completion() new call setline(1, 'foo foot') call feedkeys("o f\<C-X>\<C-N>#", 'tx') call assert_equal(' foo#', getline(2)) bwipe! endfunc " vim: shiftwidth=2 sts=2 expandtab