Skip to content

Commit

Permalink
patch 8.1.0002: :stopinsert changes the message position
Browse files Browse the repository at this point in the history
Problem:    :stopinsert changes the message position.
Solution:   Save and restore msg_col and msg_row in clearmode(). (Jason
            Franklin)
  • Loading branch information
brammool committed May 19, 2018
1 parent 2f01889 commit 2abad54
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -10485,10 +10485,16 @@ unshowmode(int force)
void
clearmode(void)
{
int save_msg_row = msg_row;
int save_msg_col = msg_col;

msg_pos_mode();
if (Recording)
recording_mode(HL_ATTR(HLF_CM));
msg_clr_eos();

msg_col = save_msg_col;
msg_row = save_msg_row;
}

static void
Expand Down
21 changes: 21 additions & 0 deletions src/testdir/test_messages.vim
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,24 @@ function Test_messages()
let &more = oldmore
endtry
endfunction

" Patch 7.4.1696 defined the "clearmode()" command for clearing the mode
" indicator (e.g., "-- INSERT --") when ":stopinsert" is invoked. Message
" output could then be disturbed when 'cmdheight' was greater than one.
" This test ensures that the bugfix for this issue remains in place.
function! Test_stopinsert_does_not_break_message_output()
set cmdheight=2
redraw!

stopinsert | echo 'test echo'
call assert_equal(116, screenchar(&lines - 1, 1))
call assert_equal(32, screenchar(&lines, 1))
redraw!

stopinsert | echomsg 'test echomsg'
call assert_equal(116, screenchar(&lines - 1, 1))
call assert_equal(32, screenchar(&lines, 1))
redraw!

set cmdheight&
endfunction
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2,
/**/
1,
/**/
Expand Down

0 comments on commit 2abad54

Please sign in to comment.