diff --git a/bundle/vim-chat/autoload/chat/windows.vim b/bundle/vim-chat/autoload/chat/windows.vim index e16e042ef..5221c31c2 100644 --- a/bundle/vim-chat/autoload/chat/windows.vim +++ b/bundle/vim-chat/autoload/chat/windows.vim @@ -200,6 +200,9 @@ function! chat#windows#open() abort if char ==# "\" " shift-space should return space in insert mode let s:c_begin .= ' ' + elseif char ==# "\" + " shift-enter should add new line + let s:c_begin .= "\n" endif else let s:c_begin .= char