aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/autoload/quote.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/autoload/quote.vim b/vim/autoload/quote.vim
index 616fd307..690ba2db 100644
--- a/vim/autoload/quote.vim
+++ b/vim/autoload/quote.vim
@@ -27,7 +27,7 @@ function! quote#QuoteOpfunc(type) abort
" If configured to do so, add a a space after the quote character, but
" only if this line isn't already quoted
let new = char
- if l:space && cur[0] != char
+ if space && cur[0] != char
let new .= ' '
endif
let new .= cur