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/autoload/htmlcomplete.vim | 809 --------------------------------- 1 file changed, 809 deletions(-) delete mode 100644 uvim/runtime/autoload/htmlcomplete.vim (limited to 'uvim/runtime/autoload/htmlcomplete.vim') diff --git a/uvim/runtime/autoload/htmlcomplete.vim b/uvim/runtime/autoload/htmlcomplete.vim deleted file mode 100644 index 267889d97f..0000000000 --- a/uvim/runtime/autoload/htmlcomplete.vim +++ /dev/null @@ -1,809 +0,0 @@ -" Vim completion script -" Language: HTML and XHTML -" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) -" Last Change: 2019 Sep 27 - -" Distinguish between HTML versions. -" To use with other HTML versions add another "elseif" condition to match -" proper DOCTYPE. -function! htmlcomplete#DetectOmniFlavor() - if &filetype == 'xhtml' - let b:html_omni_flavor = 'xhtml10s' - else - let b:html_omni_flavor = 'html401t' - endif - let i = 1 - let line = "" - while i < 10 && i < line("$") - let line = getline(i) - if line =~ '' - let b:html_omni_flavor = 'html40' - endif - if line =~ '\' - let b:html_omni_flavor .= 't' - elseif line =~ '\' - let b:html_omni_flavor .= 'f' - else - let b:html_omni_flavor .= 's' - endif - endif - endif -endfunction - -function! htmlcomplete#CompleteTags(findstart, base) - if a:findstart - " locate the start of the word - let line = getline('.') - let start = col('.') - 1 - let curline = line('.') - let compl_begin = col('.') - 2 - while start >= 0 && line[start - 1] =~ '\(\k\|[!:.-]\)' - let start -= 1 - endwhile - " Handling of entities {{{ - if start >= 0 && line[start - 1] =~ '&' - let b:entitiescompl = 1 - let b:compl_context = '' - return start - endif - " }}} - " Handling of