From 1308a0f299ddff0cb18921a19ff2e7c0ed995021 Mon Sep 17 00:00:00 2001 From: Heince Kurniawan Date: Wed, 6 Jun 2018 00:20:05 +1000 Subject: [PATCH] fix missing end double quote --- plugin/yankmatches.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/yankmatches.vim b/plugin/yankmatches.vim index 362e18c..b875f2b 100644 --- a/plugin/yankmatches.vim +++ b/plugin/yankmatches.vim @@ -92,7 +92,7 @@ function! ForAllMatches (command, options) endif endif let l:command = ':let @' . g:YankMatches#ClipboardRegister . ' = yanked' - execute 'normal! ' . l:command . "\ + execute 'normal! ' . l:command . "\" " Return to original position... call setpos('.', orig_pos)