diff options
author | erw7 <erw7.github@gmail.com> | 2019-05-27 12:26:32 +0900 |
---|---|---|
committer | erw7 <erw7.github@gmail.com> | 2019-06-05 09:54:52 +0900 |
commit | 777c2a25ce00f12b2d0dc26d594b1ba7ba10dcc6 (patch) | |
tree | 5645109e491af245d224c59f1c997f7d19af73c5 /src/nvim/option.c | |
parent | 485972dd64317e6a09ce7694cf0f903fb6d13cbd (diff) | |
download | rneovim-777c2a25ce00f12b2d0dc26d594b1ba7ba10dcc6.tar.gz rneovim-777c2a25ce00f12b2d0dc26d594b1ba7ba10dcc6.tar.bz2 rneovim-777c2a25ce00f12b2d0dc26d594b1ba7ba10dcc6.zip |
vim-patch:8.1.1270: cannot see current match position
Problem: Cannot see current match position.
Solution: Show "3/44" when using the "n" command and "S" is not in
'shortmess'. (Christian Brabandt, closes vim/vim#4317)
https://github.com/vim/vim/commit/9dfa3139198b38b28673e251a3756430065914e9
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 43ee6bf451..fde1116cc9 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -315,7 +315,7 @@ static char_u SHM_ALL[] = { SHM_RO, SHM_MOD, SHM_FILE, SHM_LAST, SHM_TEXT, SHM_LINES, SHM_NEW, SHM_WRI, SHM_ABBREVIATIONS, SHM_WRITE, SHM_TRUNC, SHM_TRUNCALL, SHM_OVER, SHM_OVERALL, SHM_SEARCH, SHM_ATTENTION, SHM_INTRO, SHM_COMPLETIONMENU, - SHM_RECORDING, SHM_FILEINFO, + SHM_RECORDING, SHM_FILEINFO, SHM_SEARCHCOUNT, 0, }; |