diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-17 14:34:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-17 14:34:27 +0800 |
commit | 2093e574c6c934a718f96d0a173aa965d3958a8b (patch) | |
tree | 06770bda995170000c71e1fbd0b73adb4b52e515 /src/nvim/optionstr.c | |
parent | f6929ea51d21034c6ed00d68a727c2c7cd7ec6ac (diff) | |
parent | 15e42dd4498829e5315b9b0da7384bedf466d707 (diff) | |
download | rneovim-2093e574c6c934a718f96d0a173aa965d3958a8b.tar.gz rneovim-2093e574c6c934a718f96d0a173aa965d3958a8b.tar.bz2 rneovim-2093e574c6c934a718f96d0a173aa965d3958a8b.zip |
Merge pull request #21850 from zeertzjq/vim-8.2.4463
vim-patch:8.2.{4463,4465,4475,4477,4478,4479,4608}: fuzzy cmdline builtin completion
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index 86fd5c9404..a1a5cadd8d 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -91,7 +91,7 @@ static char *(p_swb_values[]) = { "useopen", "usetab", "split", "newtab", "vspli static char *(p_spk_values[]) = { "cursor", "screen", "topline", NULL }; static char *(p_tc_values[]) = { "followic", "ignore", "match", "followscs", "smart", NULL }; static char *(p_ve_values[]) = { "block", "insert", "all", "onemore", "none", "NONE", NULL }; -static char *(p_wop_values[]) = { "tagfile", "pum", NULL }; +static char *(p_wop_values[]) = { "tagfile", "pum", "fuzzy", NULL }; static char *(p_wak_values[]) = { "yes", "menu", "no", NULL }; static char *(p_mousem_values[]) = { "extend", "popup", "popup_setpos", "mac", NULL }; static char *(p_sel_values[]) = { "inclusive", "exclusive", "old", NULL }; |