From 8edab245a3c18bc0fd8a942ef88450aefeccc7c1 Mon Sep 17 00:00:00 2001 From: whoisterencelee Date: Thu, 12 May 2022 19:03:28 +0800 Subject: [PATCH] escape backticks character --- plugin/tslime.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/tslime.vim b/plugin/tslime.vim index e027c30..af259d5 100644 --- a/plugin/tslime.vim +++ b/plugin/tslime.vim @@ -24,7 +24,7 @@ function! Send_to_Tmux(text) if exists("g:tslime_autoset_pane") && g:tslime_autoset_pane call Tmux_Vars() endif - call Send_keys_to_Tmux('"'.escape(a:text, '\"$').'"') + call Send_keys_to_Tmux('"'.escape(a:text, '\"$`').'"') endfunction function! s:tmux_target()