aboutsummaryrefslogtreecommitdiff
path: root/autocommands.vim
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2020-10-09 10:52:31 +0800
committerGitHub <noreply@github.com>2020-10-09 10:52:31 +0800
commita83973ede82dfe2e1e549476f3e5c570ff491dd2 (patch)
tree19ddc77bcb6eda393b0aaa414f7d399227e0ffcd /autocommands.vim
parentd23ef8acd00536fe3423c0d7b43c7d3fa4d4b929 (diff)
use echon instead of echo
echon does not add space between expressions.
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 096a549..e924126 100644
--- a/autocommands.vim
+++ b/autocommands.vim
@@ -68,7 +68,7 @@ augroup END
" Clear cmd line message
function! s:empty_message(timer)
if mode() ==# 'n'
- echo ''
+ echon ''
endif
endfunction