0
0
mirror of https://github.com/vim/vim.git synced 2025-10-02 05:04:20 -04:00

patch 9.0.0595: extra newline in messages after a verbose shell message

Problem:    Extra newline in messages after a verbose shell message.
Solution:   Output the newline with msg_putchar_attr(). (closes #11233)
            Make it possible to filter a screendump before comparing it.
This commit is contained in:
Bram Moolenaar
2022-09-26 19:50:44 +01:00
parent 2cb4a89797
commit 1190139ed0
10 changed files with 101 additions and 12 deletions

View File

@@ -1795,7 +1795,7 @@ call_shell(char_u *cmd, int opt)
{
verbose_enter();
smsg(_("Calling shell to execute: \"%s\""), cmd == NULL ? p_sh : cmd);
out_char('\n');
msg_putchar_attr('\n', 0);
cursor_on();
verbose_leave();
}