commit | 25c2f6783a9d5f15e062bd5b085abe7deb121152 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Aug 11 19:36:42 2015 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Aug 11 19:36:42 2015 +0200 |
tree | 7355874bbeb18f812461c5277ddc5f763b0b70ce | |
parent | cde885473099296c4837de261833f48b24caf87c [diff] [blame] |
patch 7.4.823 Problem: Cursor moves after CTRL-A on alphabetic character. Solution: (Hirohito Higashi, test by Christian Brabandt)
diff --git a/src/ops.c b/src/ops.c index f53567b..62d88a7 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -5584,6 +5584,7 @@ did_change = TRUE; (void)del_char(FALSE); ins_char(firstdigit); + curwin->w_cursor.col = col; } else {