diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-27 06:36:26 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-08-27 07:03:07 +0800 |
commit | cc2c8be481d3bb81ba8881097aa153bcbf64fa23 (patch) | |
tree | a0483398f73f524100c4d85a6eb467cefcff71ae /src | |
parent | e70ef80f7741905580d228927ca4f694e38777fe (diff) | |
download | rneovim-cc2c8be481d3bb81ba8881097aa153bcbf64fa23.tar.gz rneovim-cc2c8be481d3bb81ba8881097aa153bcbf64fa23.tar.bz2 rneovim-cc2c8be481d3bb81ba8881097aa153bcbf64fa23.zip |
vim-patch:9.0.0279: the tiny version has the popup menu but not 'wildmenu'
Problem: The tiny version has the popup menu but not 'wildmenu'.
Solution: Graduate the wildmenu feature.
https://github.com/vim/vim/commit/5416232707349d5f24294178f47544f2024b73ed
N/A patches for version.c:
vim-patch:9.0.0281: build failure without the +eval feature
Problem: Build failure without the +eval feature.
Solution: Add #ifdef.
https://github.com/vim/vim/commit/58dcbf1c6586d3873702e035b47829178a91250e
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ex_getln.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index d73a57ad75..081aa80778 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -1808,6 +1808,7 @@ static int command_line_handle_key(CommandLineState *s) // menu (if present) cmdline_pum_cleanup(&ccline); } + if (nextwild(&s->xpc, WILD_ALL, 0, s->firstc != '@') == FAIL) { break; } |