diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-01 21:39:33 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-01 21:39:33 +1200 |
commit | b05cf738e1f248eef383ce162c51b309792fb7fe (patch) | |
tree | 73fd4e87b027597d30604330177287a6f4b78152 | |
parent | Merge branch 'release/v1.1.0' into develop (diff) | |
download | vim-replace-operator-b05cf738e1f248eef383ce162c51b309792fb7fe.tar.gz vim-replace-operator-b05cf738e1f248eef383ce162c51b309792fb7fe.zip |
Adjust quoting for legibility
-rw-r--r-- | autoload/replace_operator.vim | 2 |
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 |