Merge pull request #147 from lingceng/master

Escape character "`" before send command
fix-tmux-next-3dot4
Leandro Ostera 7 years ago committed by GitHub
commit ca96cac46b

@ -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