diff options
author | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2017-11-03 08:28:36 +0300 |
---|---|---|
committer | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2018-01-26 18:39:20 +0300 |
commit | cd973be11bfcdee286017f83e04c3d6c3be2f19a (patch) | |
tree | 23d15499d1864efec77bfcb9687e9034ea6452dc /runtime | |
parent | 41394d82365b504c89bb4da9ed5adc11c6f619f0 (diff) | |
download | rneovim-cd973be11bfcdee286017f83e04c3d6c3be2f19a.tar.gz rneovim-cd973be11bfcdee286017f83e04c3d6c3be2f19a.tar.bz2 rneovim-cd973be11bfcdee286017f83e04c3d6c3be2f19a.zip |
vim-patch:8.0.1250
Problem: 'hlsearch' highlighting not removed after incsearch (lacygoill)
Solution: Redraw all windows. Start search at the end of the match. Improve
how CTRL-G works with incremental search. Add tests. (Christian
Brabandt, Hirohito Higashi, haya14busa, closes vim/vim#2267)
https://github.com/vim/vim/commit/f8f8b2eadbaf3090fcfccbab560de5dbd501833d
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 2e584ea9bb..6a36202177 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -3306,8 +3306,8 @@ A jump table for the options with a short description can be found at |Q_op|. Example: > augroup vimrc-incsearch-highlight autocmd! - autocmd CmdlineEnter [/\?] :set hlsearch - autocmd CmdlineLeave [/\?] :set nohlsearch + autocmd CmdlineEnter /,\? :set hlsearch + autocmd CmdlineLeave /,\? :set nohlsearch augroup END < CTRL-L can be used to add one character from after the current match |