Fix #57 Escape character "`" before send command

fix-tmux-next-3dot4
lingceng 7 years ago
parent 2285cefee9
commit 1b847e6d6a

@ -53,7 +53,7 @@ function! VimuxRunCommand(command, ...)
endfunction
function! VimuxSendText(text)
call VimuxSendKeys('"'.escape(a:text, '\"$').'"')
call VimuxSendKeys('"'.escape(a:text, '\"$`').'"')
endfunction
function! VimuxSendKeys(keys)

Loading…
Cancel
Save