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

use echon instead of echo

echon does not add space between expressions.
This commit is contained in:
jdhao
2020-10-09 10:52:31 +08:00
committed by GitHub
parent d23ef8acd0
commit a83973ede8

View File

@@ -68,7 +68,7 @@ augroup END
" Clear cmd line message
function! s:empty_message(timer)
if mode() ==# 'n'
echo ''
echon ''
endif
endfunction