aboutsummaryrefslogtreecommitdiff
path: root/autoload/replace_operator.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/replace_operator.vim')
-rw-r--r--autoload/replace_operator.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/replace_operator.vim b/autoload/replace_operator.vim
index 7d73b5e..17498d7 100644
--- a/autoload/replace_operator.vim
+++ b/autoload/replace_operator.vim
@@ -19,7 +19,7 @@ function! replace_operator#Operatorfunc(type) abort
" Build normal mode keystrokes to select the operated text in visual mode
if a:type ==# 'line'
- let select = '''[V'']'
+ let select = "'[V']"
elseif a:type ==# 'block'
let select = "`[\<C-V>`]"
else