1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:10:04 +08:00

fix(chat): fix message handler

This commit is contained in:
Shidong Wang 2021-10-27 00:56:10 +08:00
parent c9411f07f2
commit 417403749e
No known key found for this signature in database
GPG Key ID: 41BB7053E835C848

View File

@ -36,7 +36,7 @@ function! s:push_message(msg) abort
endif
endfor
else
if !empty(a:msg)
if !empty(a:msg) && a:msg !=# "\<C-m>"
call s:hander_msg(a:msg)
endif
endif