Mercurial > vim
changeset 27750:fc0a37304590 v8.2.4401
patch 8.2.4401: map listing does not clear the rest of the command line
Commit: https://github.com/vim/vim/commit/d288eaad846f0e07e0141226f97d858dcf96cb78
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 16 18:27:55 2022 +0000
patch 8.2.4401: map listing does not clear the rest of the command line
Problem: Map listing does not clear the rest of the command line.
Solution: Call msg_clear_eos(). (closes https://github.com/vim/vim/issues/5623, closes https://github.com/vim/vim/issues/5962)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 16 Feb 2022 19:30:03 +0100 |
parents | 73293bbd1e5c |
children | c9330d10419b |
files | src/map.c src/testdir/dumps/Test_map_list_1.dump src/testdir/test_mapping.vim src/version.c |
diffstat | 4 files changed, 25 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/map.c +++ b/src/map.c @@ -204,6 +204,7 @@ showmap( if (p_verbose > 0) last_set_msg(mp->m_script_ctx); #endif + msg_clr_eos(); out_flush(); // show one line at a time }
new file mode 100644 --- /dev/null +++ b/src/testdir/dumps/Test_map_list_1.dump @@ -0,0 +1,6 @@ +> +0&#ffffff0@74 +|~+0#4040ff13&| @73 +|~| @73 +|~| @73 +|~| @73 +|n+0#0000000&| @1|a| @12|b| @38|0|,|0|-|1| @8|A|l@1|
--- a/src/testdir/test_mapping.vim +++ b/src/testdir/test_mapping.vim @@ -540,7 +540,6 @@ func Test_expr_map_restore_cursor() END call writefile(lines, 'XtestExprMap') let buf = RunVimInTerminal('-S XtestExprMap', #{rows: 10}) - call TermWait(buf) call term_sendkeys(buf, "\<C-B>") call VerifyScreenDump(buf, 'Test_map_expr_1', {}) @@ -549,6 +548,22 @@ func Test_expr_map_restore_cursor() call delete('XtestExprMap') endfunc +func Test_map_listing() + CheckScreendump + + let lines =<< trim END + nmap a b + END + call writefile(lines, 'XtestMapList') + let buf = RunVimInTerminal('-S XtestMapList', #{rows: 6}) + call term_sendkeys(buf, ": nmap a\<CR>") + call VerifyScreenDump(buf, 'Test_map_list_1', {}) + + " clean up + call StopVimInTerminal(buf) + call delete('XtestMapList') +endfunc + func Test_expr_map_error() CheckScreendump @@ -565,7 +580,6 @@ func Test_expr_map_error() END call writefile(lines, 'XtestExprMap') let buf = RunVimInTerminal('-S XtestExprMap', #{rows: 10}) - call TermWait(buf) call term_sendkeys(buf, "\<F2>") call TermWait(buf) call term_sendkeys(buf, "\<CR>")