Skip to content

Commit a1db730

Browse files
committed
Merge pull request #126 from ppalucki/master
escape '$' before sending to tmux
2 parents a991ce8 + 70e16b7 commit a1db730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/vimux.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function! VimuxRunCommand(command, ...)
5353
endfunction
5454

5555
function! VimuxSendText(text)
56-
call VimuxSendKeys('"'.escape(a:text, '"').'"')
56+
call VimuxSendKeys('"'.escape(a:text, '"$').'"')
5757
endfunction
5858

5959
function! VimuxSendKeys(keys)

0 commit comments

Comments
 (0)