aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-01-16 00:08:31 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-01-16 00:13:22 +0100
commitb558f750bfc4718cbeb4a89d5f68ef11566e126d (patch)
treee0e59fce3777a0837a14d2ec10221d6e72d5d8fa /src/nvim/eval.c
parent6020e8b69ea59131be6fffd1667815f8742729db (diff)
downloadrneovim-b558f750bfc4718cbeb4a89d5f68ef11566e126d.tar.gz
rneovim-b558f750bfc4718cbeb4a89d5f68ef11566e126d.tar.bz2
rneovim-b558f750bfc4718cbeb4a89d5f68ef11566e126d.zip
vim-patch:8.0.1419: cursor column is not updated after ]s
Problem: Cursor column is not updated after ]s. (Gary Johnson) Solution: Set the curswant flag. https://github.com/vim/vim/commit/b73fa629d6d3d705c1f8e8d5f8109fc9abd7bb6f
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 2e8bf18f2d..5c414cdaeb 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -15538,6 +15538,7 @@ static void f_spellbadword(typval_T *argvars, typval_T *rettv, FunPtr fptr)
len = spell_move_to(curwin, FORWARD, true, true, &attr);
if (len != 0) {
word = (char *)get_cursor_pos_ptr();
+ curwin->w_set_curswant = true;
}
} else if (curwin->w_p_spell && *curbuf->b_s.b_p_spl != NUL) {
const char *str = tv_get_string_chk(&argvars[0]);