diff runtime/doc/options.txt @ 12744:0c704288ced4 v8.0.1250

patch 8.0.1250: 'hlsearch' highlighting not removed after incsearch commit https://github.com/vim/vim/commit/f8f8b2eadbaf3090fcfccbab560de5dbd501833d Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 2 19:08:48 2017 +0100 patch 8.0.1250: 'hlsearch' highlighting not removed after incsearch 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 #2267)
author Christian Brabandt <cb@256bit.org>
date Thu, 02 Nov 2017 19:15:05 +0100
parents 37c384802df4
children 3b26420fc639
line wrap: on
line diff
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -4454,8 +4454,8 @@ A jump table for the options with a shor
 	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