Merge pull request #126 from ppalucki/master

escape '$' before sending to tmux
fix-tmux-next-3dot4
Ben Mills 9 years ago
commit a1db73079f

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