mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
vim-patch:9.1.0463: no fuzzy-matching support for insert-completion
Problem: no fuzzy-matching support for insert-completion
Solution: enable insert-mode completion with fuzzy-matching
using :set completopt+=fuzzy (glepnir).
closes: vim/vim#14878
a218cc6cda
Co-authored-by: glepnir <glephunter@gmail.com>
This commit is contained in:
@@ -122,8 +122,8 @@ static char *(p_bs_values[]) = { "indent", "eol", "start", "nostop", NULL };
|
||||
static char *(p_fdm_values[]) = { "manual", "expr", "marker", "indent",
|
||||
"syntax", "diff", NULL };
|
||||
static char *(p_fcl_values[]) = { "all", NULL };
|
||||
static char *(p_cot_values[]) = { "menu", "menuone", "longest", "preview", "noinsert", "noselect",
|
||||
"popup", NULL };
|
||||
static char *(p_cot_values[]) = { "menu", "menuone", "longest", "preview", "popup",
|
||||
"noinsert", "noselect", "fuzzy", NULL };
|
||||
#ifdef BACKSLASH_IN_FILENAME
|
||||
static char *(p_csl_values[]) = { "slash", "backslash", NULL };
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user