diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-09 17:13:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 17:13:44 +0800 |
commit | cd14efd281c260c92936f05bf5f91780f8912f81 (patch) | |
tree | 29b7778ae35f57f8c260f5e34dbb38a050929285 /src/nvim/normal.c | |
parent | a5e846b9969b1dfbd7e92f437f3ac7905039b84f (diff) | |
download | rneovim-cd14efd281c260c92936f05bf5f91780f8912f81.tar.gz rneovim-cd14efd281c260c92936f05bf5f91780f8912f81.tar.bz2 rneovim-cd14efd281c260c92936f05bf5f91780f8912f81.zip |
vim-patch:8.1.1823: command line history code is spread out (#19688)
Problem: Command line history code is spread out.
Solution: Put the code in a new file. (Yegappan Lakshmanan, closes vim/vim#4779)
Also graduate the +cmdline_hist feature.
https://github.com/vim/vim/commit/d7663c22c6c1ff0f86b81371586fbc851d3a3e9e
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 2d752eade7..064b73a56f 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -18,6 +18,7 @@ #include "nvim/buffer.h" #include "nvim/change.h" #include "nvim/charset.h" +#include "nvim/cmdhist.h" #include "nvim/cursor.h" #include "nvim/diff.h" #include "nvim/digraph.h" @@ -4379,9 +4380,11 @@ static void nv_ident(cmdarg_T *cap) && vim_iswordp(mb_prevptr(get_cursor_line_ptr(), ptr))) { STRCAT(buf, "\\>"); } + // put pattern in search history init_history(); add_to_history(HIST_SEARCH, (char_u *)buf, true, NUL); + (void)normal_search(cap, cmdchar == '*' ? '/' : '?', (char_u *)buf, 0, NULL); } else { |