vim-patch:7.4.1634 (#5594)

Problem:    Vertical movement after CTRL-A ends up in the wrong column.
            (Urtica Dioica)
Solution:   Set curswant when appropriate. (Hirohito Higashi)

8e08125d3a
This commit is contained in:
James McCoy
2016-11-12 05:32:23 -05:00
committed by Justin M. Keyes
parent c5bc0ea04c
commit 7e48c23a50
3 changed files with 16 additions and 1 deletions

View File

@@ -4679,6 +4679,8 @@ int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1)
theend:
if (visual) {
curwin->w_cursor = save_cursor;
} else if (did_change) {
curwin->w_set_curswant = true;
}
return did_change;