Update Vim plugins, add override for buggy htmldjango format

This commit is contained in:
2026-05-24 16:03:31 -05:00
parent 4103adeef7
commit 07d22bb7d4
7 changed files with 13 additions and 6 deletions
+7
View File
@@ -0,0 +1,7 @@
" Work around Vim 9.2.500 htmldjango syntax spillover from the May 2026
" djangoOperator change. The stock djangoOperator rule is enough here; the
" htmldjango-only djangoTagBlockNaive region can leak across following HTML.
silent! syntax clear djangoTagBlockNaive
silent! syntax clear djangoOperator
syntax match djangoOperator "==\|!=\|<=\|>=\|<\|>" contained containedin=djangoTagBlock
highlight default link djangoOperator Operator