diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-03-08 05:58:00 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2025-03-27 07:26:42 +0800 |
commit | 10fde593f177fb7655c5f1c2b9774509e90c6106 (patch) | |
tree | d69255253c914cf39b3bc3d0ed64c5be92745d59 /test | |
parent | 17db70f3af382211b82574d03b227164f4db510b (diff) | |
download | rneovim-10fde593f177fb7655c5f1c2b9774509e90c6106.tar.gz rneovim-10fde593f177fb7655c5f1c2b9774509e90c6106.tar.bz2 rneovim-10fde593f177fb7655c5f1c2b9774509e90c6106.zip |
vim-patch:9.1.1182: No cmdline completion for 'completefuzzycollect'
Problem: No cmdline completion for the 'completefuzzycollect' option
(after v9.1.1178)
Solution: Add cmdline completion for the 'completefuzzycollect' option,
improve its description in optwin.vim (zeertzjq).
closes: vim/vim#16813
https://github.com/vim/vim/commit/53d59ecc1d93ce3a3f6d0182479d825852018ceb
No code change is needed in Nvim as Nvim uses expand_set_str_generic()
by default.
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_options.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_options.vim b/test/old/testdir/test_options.vim index ce2d9ba05a..9104098baa 100644 --- a/test/old/testdir/test_options.vim +++ b/test/old/testdir/test_options.vim @@ -513,6 +513,7 @@ func Test_set_completion_string_values() endif call assert_equal('.', getcompletion('set complete=', 'cmdline')[1]) call assert_equal('menu', getcompletion('set completeopt=', 'cmdline')[1]) + call assert_equal('keyword', getcompletion('set completefuzzycollect=', 'cmdline')[0]) if exists('+completeslash') call assert_equal('backslash', getcompletion('set completeslash=', 'cmdline')[1]) endif |