diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-08-30 15:37:24 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2025-03-27 07:26:41 +0800 |
commit | d5a6040967d8dd32b6cdeceb907ca4d50f56e4c2 (patch) | |
tree | 1cc3780100fdd88f537e1675b5376dbd4342ae8e /test/functional/ui/popupmenu_spec.lua | |
parent | 9acb52c8f386ea0a026ba4e314e1294da66f8e79 (diff) | |
download | rneovim-d5a6040967d8dd32b6cdeceb907ca4d50f56e4c2.tar.gz rneovim-d5a6040967d8dd32b6cdeceb907ca4d50f56e4c2.tar.bz2 rneovim-d5a6040967d8dd32b6cdeceb907ca4d50f56e4c2.zip |
vim-patch:9.1.0598: fuzzy completion does not work with default completion
Problem: fuzzy completion does not work with default completion
Solution: Make it work (glepnir)
closes: vim/vim#15193
https://github.com/vim/vim/commit/8159fb18a92e9a9f5e35201bd92bf651f4d5835c
Cherry-pick insexpand.c changes from patch 9.1.0608.
N/A patch:
vim-patch:9.1.0632: MS-Windows: Compiler Warnings
Co-authored-by: glepnir <glephunter@gmail.com>
Diffstat (limited to 'test/functional/ui/popupmenu_spec.lua')
-rw-r--r-- | test/functional/ui/popupmenu_spec.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/ui/popupmenu_spec.lua b/test/functional/ui/popupmenu_spec.lua index 728f8ed3d0..e41df13088 100644 --- a/test/functional/ui/popupmenu_spec.lua +++ b/test/functional/ui/popupmenu_spec.lua @@ -6938,9 +6938,9 @@ describe('builtin popupmenu', function() feed('S hello helio hero h<C-X><C-P>') screen:expect([[ hello helio hero h^ | - {1:~ }{n: }{mn:h}{n:ello }{1: }| + {1:~ }{n: }{mn:h}{n:ero }{1: }| {1:~ }{n: }{mn:h}{n:elio }{1: }| - {1:~ }{s: }{ms:h}{s:ero }{1: }| + {1:~ }{s: }{ms:h}{s:ello }{1: }| {1:~ }|*15 {2:-- }{5:match 1 of 3} | ]]) @@ -6948,9 +6948,9 @@ describe('builtin popupmenu', function() feed('<Esc>S hello helio hero h<C-X><C-P><C-P>') screen:expect([[ hello helio hero h^ | - {1:~ }{n: }{mn:h}{n:ello }{1: }| - {1:~ }{s: }{ms:h}{s:elio }{1: }| {1:~ }{n: }{mn:h}{n:ero }{1: }| + {1:~ }{s: }{ms:h}{s:elio }{1: }| + {1:~ }{n: }{mn:h}{n:ello }{1: }| {1:~ }|*15 {2:-- }{5:match 2 of 3} | ]]) |