diff src/ex_getln.c @ 14760:fd69edd2c67e v8.1.0392

patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled commit https://github.com/vim/vim/commit/50eb16c3b23235b21ce4494673a7741a9a196176 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 15 15:42:40 2018 +0200 patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled Problem: Error while typing :/foo/s// with 'incsearch' enabled. Solution: Do not give search errors when highlighting matches.
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Sep 2018 15:45:10 +0200
parents 0a3b9ecf7cb8
children 5e5f2d824189
line wrap: on
line diff
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -388,7 +388,7 @@ do_incsearch_highlighting(int firstc, in
     // parse the address range
     save_cursor = curwin->w_cursor;
     curwin->w_cursor = is_state->search_start;
-    parse_cmd_address(&ea, &dummy);
+    parse_cmd_address(&ea, &dummy, TRUE);
     if (ea.addr_count > 0)
     {
 	// Allow for reverse match.