From 4dbe9cbf52ba2bd06adbb58ed9a0ed6b9358dd61 Mon Sep 17 00:00:00 2001 From: jdhao Date: Fri, 9 Oct 2020 11:52:18 +0800 Subject: [PATCH] update: clear cmdline msg after 20 seconds 5 seconds is too short for long messages or messages we want to keep a record of. --- autocommands.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autocommands.vim b/autocommands.vim index e924126..3e0e8d0 100644 --- a/autocommands.vim +++ b/autocommands.vim @@ -74,6 +74,6 @@ endfunction augroup cmd_msg_cls autocmd! - autocmd CmdlineLeave : call timer_start(5000, funcref('s:empty_message')) + autocmd CmdlineLeave : call timer_start(20000, funcref('s:empty_message')) augroup END "}