1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update: clear cmdline msg after 20 seconds

5 seconds is too short for long messages or messages we want to keep a record of.
This commit is contained in:
jdhao 2020-10-09 11:52:18 +08:00 committed by GitHub
parent cb45575b1f
commit 4dbe9cbf52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
"}