updated for version 7.3.463
Problem: When using ":s///c" the cursor is moved away from the match.
(Lawman)
Solution: Don't move the cursor when do_ask is set. (Christian Brabandt)
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 644c32b..ba18d9d 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -5151,10 +5151,13 @@
if (!global_busy)
{
- if (endcolumn)
- coladvance((colnr_T)MAXCOL);
- else
- beginline(BL_WHITE | BL_FIX);
+ if (!do_ask) /* when interactive leave cursor on the match */
+ {
+ if (endcolumn)
+ coladvance((colnr_T)MAXCOL);
+ else
+ beginline(BL_WHITE | BL_FIX);
+ }
if (!do_sub_msg(do_count) && do_ask)
MSG("");
}