diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-16 19:58:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-16 19:58:25 +0100 |
commit | f2405ed2321da4a879fe0b0703af780fc0432c63 (patch) | |
tree | 0cc02db45ec63fd64c3d75e5d5ab2c2a24e51a60 /src/proto/message.pro | |
parent | 57002ad70c4c32f3afefec24994a974cf3eef3ad (diff) | |
download | vim-f2405ed2321da4a879fe0b0703af780fc0432c63.zip |
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.
Diffstat (limited to 'src/proto/message.pro')
-rw-r--r-- | src/proto/message.pro | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/proto/message.pro b/src/proto/message.pro index 9a79f14a6..8d9ac71cc 100644 --- a/src/proto/message.pro +++ b/src/proto/message.pro @@ -52,7 +52,9 @@ void msg_puts_long_len_attr(char_u *longstr, int len, int attr); void msg_puts_attr(char_u *s, int attr); int message_filtered(char_u *msg); void may_clear_sb_text(void); -void clear_sb_text(void); +void sb_text_start_cmdline(void); +void sb_text_end_cmdline(void); +void clear_sb_text(int all); void show_sb_text(void); void msg_sb_eol(void); int msg_use_printf(void); |