summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2020-01-06 14:29:46 +0100
committerDaniel Hahler <git@thequod.de>2020-01-06 14:29:46 +0100
commitd31e66c6ba5a9b4e8b610608f1a9bc114c3ec23c (patch)
tree0ae1b8c09385f7ac27f29c71bab3cd1a2fbd39f3
parent88023b89489186f852f084181eac730a9259b666 (diff)
downloadjinja2-d31e66c6ba5a9b4e8b610608f1a9bc114c3ec23c.tar.gz
ext/Vim/jinja.vim: fix issues reported by vint
-rw-r--r--ext/Vim/jinja.vim10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/Vim/jinja.vim b/ext/Vim/jinja.vim
index 6ab9e5b..e2a5bbf 100644
--- a/ext/Vim/jinja.vim
+++ b/ext/Vim/jinja.vim
@@ -20,7 +20,7 @@ endif
" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if !exists("main_syntax")
- if version < 600
+ if v:version < 600
syntax clear
elseif exists("b:current_syntax")
finish
@@ -30,7 +30,7 @@ endif
" Pull in the HTML syntax.
if g:jinja_syntax_html
- if version < 600
+ if v:version < 600
so <sfile>:p:h/html.vim
else
runtime! syntax/html.vim
@@ -98,8 +98,8 @@ syn match jinjaStatement containedin=jinjaTagBlock contained /\<with\(out\)\?\s\
" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
-if version >= 508 || !exists("did_jinja_syn_inits")
- if version < 508
+if v:version >= 508 || !exists("did_jinja_syn_inits")
+ if v:version < 508
let did_jinja_syn_inits = 1
command -nargs=+ HiLink hi link <args>
else
@@ -133,6 +133,6 @@ endif
let b:current_syntax = "jinja"
-if main_syntax == 'jinja'
+if main_syntax ==# 'jinja'
unlet main_syntax
endif