comparison src/gui.c @ 11163:f4d1fad4ac00 v8.0.0468

patch 8.0.0468: after aborting an Ex command g< does not work commit https://github.com/vim/vim/commit/f2405ed2321da4a879fe0b0703af780fc0432c63 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 16 19:58:25 2017 +0100 patch 8.0.0468: after aborting an Ex command g< does not work Problem: After aborting an Ex command g< does not work. (Marcin Szamotulski) Solution: Postpone clearing scrollback messages to until the command line has been entered. Also fix that the screen isn't redrawn if after g< the command line is cancelled.
author Christian Brabandt <cb@256bit.org>
date Thu, 16 Mar 2017 20:00:05 +0100
parents f4ea50924c6d
children 26525db57c4c
comparison
equal deleted inserted replaced
11162:406ed314f018 11163:f4d1fad4ac00
628 628
629 /* Avoid a delay for an error message that was printed in the terminal 629 /* Avoid a delay for an error message that was printed in the terminal
630 * where Vim was started. */ 630 * where Vim was started. */
631 emsg_on_display = FALSE; 631 emsg_on_display = FALSE;
632 msg_scrolled = 0; 632 msg_scrolled = 0;
633 clear_sb_text(); 633 clear_sb_text(TRUE);
634 need_wait_return = FALSE; 634 need_wait_return = FALSE;
635 msg_didany = FALSE; 635 msg_didany = FALSE;
636 636
637 /* 637 /*
638 * Check validity of any generic resources that may have been loaded. 638 * Check validity of any generic resources that may have been loaded.