0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 7.4.2283

Problem:    Part of ":oldfiles" command isn't cleared. (Lifepillar)
Solution:   Clear the rest of the line. (closes 1018)
This commit is contained in:
Bram Moolenaar
2016-08-28 17:08:17 +02:00
parent 0abe0522d0
commit 885c00eabe
2 changed files with 3 additions and 0 deletions

View File

@@ -8471,6 +8471,7 @@ ex_oldfiles(exarg_T *eap UNUSED)
msg_outnum((long)nr);
MSG_PUTS(": ");
msg_outtrans(fname);
msg_clr_eos();
msg_putchar('\n');
out_flush(); /* output one line at a time */
ui_breakcheck();