Fix #57 Escape character "`" before send command

pull/147/head
lingceng 8 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