diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-21 09:18:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 09:18:47 +0800 |
commit | 61ff37952ab95bc8362003bec0ff9acf565e1b09 (patch) | |
tree | b0edcc1e1f2408719121e9bae36bc517689d3cc3 /src/nvim/cmdexpand.h | |
parent | 741ef87876d86ef7c6f64297a47aba15613e78da (diff) | |
download | rneovim-61ff37952ab95bc8362003bec0ff9acf565e1b09.tar.gz rneovim-61ff37952ab95bc8362003bec0ff9acf565e1b09.tar.bz2 rneovim-61ff37952ab95bc8362003bec0ff9acf565e1b09.zip |
vim-patch:8.2.1587: loop for handling keys for the command line is too long (#19868)
Problem: Loop for handling keys for the command line is too long.
Solution: Move wild menu handling to separate functions. (Yegappan
Lakshmanan, closes vim/vim#6856)
https://github.com/vim/vim/commit/eadee486c70946ad0e1746d77898d6f4f4acc817
Diffstat (limited to 'src/nvim/cmdexpand.h')
-rw-r--r-- | src/nvim/cmdexpand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/cmdexpand.h b/src/nvim/cmdexpand.h index f534a2e0d3..93e91af169 100644 --- a/src/nvim/cmdexpand.h +++ b/src/nvim/cmdexpand.h @@ -2,6 +2,7 @@ #define NVIM_CMDEXPAND_H #include "nvim/eval/typval.h" +#include "nvim/ex_getln.h" #include "nvim/garray.h" #include "nvim/types.h" |