diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-01-26 02:19:42 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-01-26 02:19:42 -0500 |
commit | d30464264af2b5aa261281e221d936095dbab864 (patch) | |
tree | dbaaea4a171d1a3ae431245a1ce3ff28e415ac67 /src/nvim/edit.c | |
parent | 0f2d02569cd41e1ffac4195ec47b1ca9b3f08418 (diff) | |
parent | b994c5c515060757029e41621dedd9a5a9f7112a (diff) | |
download | rneovim-d30464264af2b5aa261281e221d936095dbab864.tar.gz rneovim-d30464264af2b5aa261281e221d936095dbab864.tar.bz2 rneovim-d30464264af2b5aa261281e221d936095dbab864.zip |
Merge 'vim-patch: Small patches' #1873
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 03dceaf092..df45f57606 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -5752,6 +5752,8 @@ stop_insert ( if (curwin->w_cursor.lnum != tpos.lnum) curwin->w_cursor = tpos; else { + /* reset tpos, could have been invalidated in the loop above */ + tpos = curwin->w_cursor; tpos.col++; if (cc != NUL && gchar_pos(&tpos) == NUL) { ++curwin->w_cursor.col; // put cursor back on the NUL |