aboutsummaryrefslogtreecommitdiff
path: root/autocommands.vim
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2020-10-09 11:52:18 +0800
committerGitHub <noreply@github.com>2020-10-09 11:52:18 +0800
commit4dbe9cbf52ba2bd06adbb58ed9a0ed6b9358dd61 (patch)
tree3389b36eca726ebb5e9eb410443607b6d231563e /autocommands.vim
parentcb45575b1f2db651d71e4053e0b40a77efd3827c (diff)
update: clear cmdline msg after 20 seconds
5 seconds is too short for long messages or messages we want to keep a record of.
Diffstat (limited to 'autocommands.vim')
-rw-r--r--autocommands.vim2
1 files changed, 1 insertions, 1 deletions
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
"}