Skip to content

Commit 1d652fd

Browse files
committed
Merge pull request #134 from everbot/master
Fix #133: escape backslash
2 parents bc11e40 + 770ae77 commit 1d652fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/vimux.vim

+1-1
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)