0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

patch 8.1.1375: without "TS" in 'shortmess' get a hit-enter prompt often

Problem:    Without "TS" in 'shortmess' get a hit-enter prompt often.
Solution:   Always truncate the search message.  Also avoid putting it in the
            message history. (closes #4413)
This commit is contained in:
Bram Moolenaar
2019-05-24 13:11:47 +02:00
parent c97582b029
commit 984f031fb0
4 changed files with 53 additions and 38 deletions

View File

@@ -1271,11 +1271,13 @@ main_loop(
{
char_u *p;
/* msg_attr_keep() will set keep_msg to NULL, must free the
* string here. Don't reset keep_msg, msg_attr_keep() uses it
* to check for duplicates. */
// msg_attr_keep() will set keep_msg to NULL, must free the
// string here. Don't reset keep_msg, msg_attr_keep() uses it
// to check for duplicates. Never put this message in history.
p = keep_msg;
msg_hist_off = TRUE;
msg_attr((char *)p, keep_msg_attr);
msg_hist_off = FALSE;
vim_free(p);
}
if (need_fileinfo) /* show file info after redraw */