comparison src/evalfunc.c @ 13088:3dd37eec73f0 v8.0.1419

patch 8.0.1419: cursor column is not updated after ]s commit https://github.com/vim/vim/commit/b73fa629d6d3d705c1f8e8d5f8109fc9abd7bb6f Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 21 20:27:47 2017 +0100 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.
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Dec 2017 20:30:06 +0100
parents 17720967656c
children 9b3f8029a326
comparison
equal deleted inserted replaced
13087:4a5e22458adb 13088:3dd37eec73f0
11171 if (argvars[0].v_type == VAR_UNKNOWN) 11171 if (argvars[0].v_type == VAR_UNKNOWN)
11172 { 11172 {
11173 /* Find the start and length of the badly spelled word. */ 11173 /* Find the start and length of the badly spelled word. */
11174 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr); 11174 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
11175 if (len != 0) 11175 if (len != 0)
11176 {
11176 word = ml_get_cursor(); 11177 word = ml_get_cursor();
11178 curwin->w_set_curswant = TRUE;
11179 }
11177 } 11180 }
11178 else if (curwin->w_p_spell && *curbuf->b_s.b_p_spl != NUL) 11181 else if (curwin->w_p_spell && *curbuf->b_s.b_p_spl != NUL)
11179 { 11182 {
11180 char_u *str = get_tv_string_chk(&argvars[0]); 11183 char_u *str = get_tv_string_chk(&argvars[0]);
11181 int capcol = -1; 11184 int capcol = -1;