mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
updated for version 7.4.492
Problem: In Insert mode, after inserting a newline that inserts a comment leader, CTRL-O moves to the right. (ZyX) Issue 57. Solution: Correct the condition for moving the cursor back to the NUL. (Christian Brabandt)
This commit is contained in:
@@ -6916,8 +6916,12 @@ stop_insert(end_insert_pos, esc, nomove)
|
||||
}
|
||||
if (curwin->w_cursor.lnum != tpos.lnum)
|
||||
curwin->w_cursor = tpos;
|
||||
else if (cc != NUL)
|
||||
++curwin->w_cursor.col; /* put cursor back on the NUL */
|
||||
else
|
||||
{
|
||||
tpos.col++;
|
||||
if (cc != NUL && gchar_pos(&tpos) == NUL)
|
||||
++curwin->w_cursor.col; /* put cursor back on the NUL */
|
||||
}
|
||||
|
||||
/* <C-S-Right> may have started Visual mode, adjust the position for
|
||||
* deleted characters. */
|
||||
|
Reference in New Issue
Block a user