diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-01-17 12:24:24 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2023-01-17 14:01:26 +0800 |
| commit | 245522db1eb294007066878492d19295a5e91f04 (patch) | |
| tree | a9b1819f56c76047d2946ba2e5e0332affb928ad /src/nvim/testdir/test_cmdline.vim | |
| parent | bdd14d03c7711e11c00cf81b417e869ecd10a3b0 (diff) | |
| download | rneovim-245522db1eb294007066878492d19295a5e91f04.tar.gz rneovim-245522db1eb294007066878492d19295a5e91f04.tar.bz2 rneovim-245522db1eb294007066878492d19295a5e91f04.zip | |
vim-patch:8.2.4478: crash when using fuzzy completion
Problem: Crash when using fuzzy completion.
Solution: Temporary fix: put back regexp. (closes vim/vim#9852, closes vim/vim#9851)
https://github.com/vim/vim/commit/00333cb3b341499df8729b9345f0bbad968cda0b
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'src/nvim/testdir/test_cmdline.vim')
| -rw-r--r-- | src/nvim/testdir/test_cmdline.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim index 16d99cf4c5..4c59a8ab7c 100644 --- a/src/nvim/testdir/test_cmdline.vim +++ b/src/nvim/testdir/test_cmdline.vim @@ -2869,6 +2869,10 @@ func Test_wildoptions_fuzzy() call assert_equal('"mapclear <buffer>', @:) " map name fuzzy completion - NOT supported + " test regex completion works + set wildoptions=fuzzy + call feedkeys(":cnoremap <ex\<Tab> <esc> \<Tab>\<C-B>\"\<CR>", 'tx') + call assert_equal("\"cnoremap <expr> <esc> \<Tab>", @:) " menu name fuzzy completion if has('gui_running') |