From 417403749e049b1f91e00651c9fec75fcd69367a Mon Sep 17 00:00:00 2001 From: Shidong Wang Date: Wed, 27 Oct 2021 00:56:10 +0800 Subject: [PATCH] fix(chat): fix message handler --- bundle/vim-chat/autoload/chat.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/vim-chat/autoload/chat.vim b/bundle/vim-chat/autoload/chat.vim index fd4a8434a..07910d69e 100644 --- a/bundle/vim-chat/autoload/chat.vim +++ b/bundle/vim-chat/autoload/chat.vim @@ -36,7 +36,7 @@ function! s:push_message(msg) abort endif endfor else - if !empty(a:msg) + if !empty(a:msg) && a:msg !=# "\" call s:hander_msg(a:msg) endif endif