]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
ext/Vim/jinja.vim: fix issues reported by vint 1122/head
authorDaniel Hahler <git@thequod.de>
Mon, 6 Jan 2020 13:29:46 +0000 (14:29 +0100)
committerDaniel Hahler <git@thequod.de>
Mon, 6 Jan 2020 13:29:46 +0000 (14:29 +0100)
ext/Vim/jinja.vim

index 6ab9e5b74289d972c294fd4fc70f622f7a6edeba..e2a5bbf6c9abce10da0823e4541956117cff7b45 100644 (file)
@@ -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