8 lines
436 B
VimL
8 lines
436 B
VimL
" 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
|