diff options
| author | jdhao <jdhao@hotmail.com> | 2020-10-09 10:52:31 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-09 10:52:31 +0800 |
| commit | a83973ede82dfe2e1e549476f3e5c570ff491dd2 (patch) | |
| tree | 19ddc77bcb6eda393b0aaa414f7d399227e0ffcd | |
| parent | d23ef8acd00536fe3423c0d7b43c7d3fa4d4b929 (diff) | |
use echon instead of echo
echon does not add space between expressions.
| -rw-r--r-- | autocommands.vim | 2 |
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 |
