summaryrefslogtreecommitdiffstats
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-12-21 20:27:47 +0100
committerBram Moolenaar <Bram@vim.org>2017-12-21 20:27:47 +0100
commitb73fa629d6d3d705c1f8e8d5f8109fc9abd7bb6f (patch)
tree9969ba546d128ada78ef1cb7603caa135b4df255 /src/evalfunc.c
parentae6f8651251013bafef9de1aed09069deaae8122 (diff)
patch 8.0.1419: cursor column is not updated after ]sv8.0.1419
Problem: Cursor column is not updated after ]s. (Gary Johnson) Solution: Set the curswant flag.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 7f78a9d707..764a4db641 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -11173,7 +11173,10 @@ f_spellbadword(typval_T *argvars UNUSED, typval_T *rettv)
/* Find the start and length of the badly spelled word. */
len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
if (len != 0)
+ {
word = ml_get_cursor();
+ curwin->w_set_curswant = TRUE;
+ }
}
else if (curwin->w_p_spell && *curbuf->b_s.b_p_spl != NUL)
{