aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-24 16:39:30 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-24 16:39:30 +1200
commitf4f8c1cc1da42ee6322da9a752db9111b2aacbfc (patch)
treee50ff049f3abe4ef3cf418614c49e4208fbe68c1 /vim/autoload
parentUpdate vim-put-blank-lines to v3.1.0 (diff)
downloaddotfiles-f4f8c1cc1da42ee6322da9a752db9111b2aacbfc.tar.gz
dotfiles-f4f8c1cc1da42ee6322da9a752db9111b2aacbfc.zip
Remove unneeded variable scoping
Diffstat (limited to 'vim/autoload')
-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