From 2eae5db069dc171f74cd863487655f6a88e5384d Mon Sep 17 00:00:00 2001 From: Mehmet Samet Duman Date: Fri, 3 Apr 2026 22:21:25 +0300 Subject: NOISSUE rebrand vim to MNV's not Vim Signed-off-by: Mehmet Samet Duman --- uvim/runtime/syntax/dtd.vim | 161 -------------------------------------------- 1 file changed, 161 deletions(-) delete mode 100644 uvim/runtime/syntax/dtd.vim (limited to 'uvim/runtime/syntax/dtd.vim') diff --git a/uvim/runtime/syntax/dtd.vim b/uvim/runtime/syntax/dtd.vim deleted file mode 100644 index 58f07c98dd..0000000000 --- a/uvim/runtime/syntax/dtd.vim +++ /dev/null @@ -1,161 +0,0 @@ -" Vim syntax file -" Language: DTD (Document Type Definition for XML) -" Maintainer: Christian Brabandt -" Repository: https://github.com/chrisbra/vim-xml-ftplugin -" Previous Maintainer: Johannes Zellner -" Author: Daniel Amyot -" Last Changed: Sept 24, 2019 -" Filenames: *.dtd -" -" REFERENCES: -" http://www.w3.org/TR/html40/ -" http://www.w3.org/TR/NOTE-html-970421 -" -" TODO: -" - improve synchronizing. - -if exists("b:current_syntax") - finish -endif -let s:dtd_cpo_save = &cpo -set cpo&vim - -if !exists("dtd_ignore_case") - " I prefer having the case takes into consideration. - syn case match -else - syn case ignore -endif - - -" the following line makes the opening highlighted using 'dtdFunction'. -" -" PROVIDES: @dtdTagHook -" -syn region dtdTag matchgroup=dtdFunction - \ start=++ matchgroup=NONE - \ contains=dtdTag,dtdTagName,dtdError,dtdComment,dtdString,dtdAttrType,dtdAttrDef,dtdEnum,dtdParamEntityInst,dtdParamEntityDecl,dtdCard,@dtdTagHook - -if !exists("dtd_no_tag_errors") - " mark everything as an error which starts with a + -endif - -" if this is a html like comment highlight also -" the opening as Comment. -syn region dtdComment start=++ contains=dtdTodo,@Spell - - -" proper DTD comment -syn region dtdComment contained start=+--+ end=+--+ contains=dtdTodo,@Spell - - -" Start tags (keywords). This is contained in dtdFunction. -" Note that everything not contained here will be marked -" as error. -syn match dtdTagName contained +" - \ matchgroup=NONE contains=dtdParamEntityPunct - syn match dtdParamEntityPunct contained "\." - - " declarations - " syn region dtdParamEntityDecl oneline matchgroup=dtdParamEntityDPunct start=+" contains=dtdParamEntityDPunct - syn match dtdParamEntityDecl +