]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(htmldjango): Remove unnecessary code.
authortecis <67809811+tecis@users.noreply.github.com>
Mon, 18 May 2026 21:46:24 +0000 (21:46 +0000)
committerChristian Brabandt <cb@256bit.org>
Tue, 19 May 2026 17:09:11 +0000 (17:09 +0000)
I submitted the PR #20232 to resolve an undesired behavior in with the
highlighter inheriting from "django.vim" and "html.vim". After
further testing I noticed the re-declaration of `djangoOperators` in
"htmldjango" is not necessary, and my conclusions where a mistake from a
not-clean test environment.

This PR reverses the effect of the commit #f03155a.

related: #20232
closes:  #20248

Signed-off-by: tecis <67809811+tecis@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/syntax/htmldjango.vim

index bffb11aa6444e2e1547b39d0d95135a4067c7bec..07b1c375e8652111c6cbddd16578216a0d533128 100644 (file)
@@ -2,7 +2,6 @@
 " Language:    Django HTML template
 " Maintainer:  Dave Hodder <dmh@dmh.org.uk>
 " Last Change: 2014 Jul 13
-" 2026 May 17 by Vim Project Add highlighting for comparison operators #20232
 
 " quit when a syntax file was already loaded
 if exists("b:current_syntax")
@@ -24,8 +23,4 @@ syn region djangoVarBlock start="{{" end="}}" contains=djangoFilter,djangoArgume
 syn region djangoComment start="{%\s*comment\(\s\+.\{-}\)\?%}" end="{%\s*endcomment\s*%}" contains=djangoTodo containedin=ALLBUT,@djangoBlocks
 syn region djangoComBlock start="{#" end="#}" contains=djangoTodo containedin=ALLBUT,@djangoBlocks
 
-" Use djangoTagBlockNaive to limit the djangoOperator matched characters to avoid spill-over with HTML, JS and CSS.
-syn region djangoTagBlockNaive start="{%" end="%}" contains=djangoTagBlock,djangoVarBlock,djangoComment,djangoComBlock
-syn match djangoOperator "==\|!=\|<=\|>=\|<\|>" contained containedin=CONTAINS,@djangoTagBlockNaive
-
 let b:current_syntax = "htmldjango"