Lines Matching refs:tagname
59 let s:tagname = '\w\+\(-\w\+\)*'
162 " The key is "tagname" or "/tagname". {{{
255 " Return non-zero when "tagname" is an opening tag, not being a block tag, for
258 func HtmlIndent_IsOpenTag(tagname) argument
260 if get(s:indent_tags, a:tagname) == 1
263 return get(b:hi_tags, a:tagname) == 1
266 " Get the value for "tagname", taking care of buffer-local tags.
267 func s:get_tag(tagname) argument
269 let i = get(s:indent_tags, a:tagname)
270 if (i == 1 || i == -1) && get(b:hi_removed_tags, a:tagname) != 0
274 let i = get(b:hi_tags, a:tagname)
287 …call substitute(a:text, '<\zs/\=' . s:tagname . '\>\|<!--\[\|\[endif\]-->\|<!--\|-->', '\=s:CheckT…
299 …let tmp = substitute(a:text, '<\zs/\=' . s:tagname . '\>\|<!--\[\|\[endif\]-->\|<!--\|-->', '\=s:C…
537 if !swendtag && text =~ '</' . s:tagname . '\s*>\s*$'
876 let tagname = matchstr(getline('.')[col('.') - 1:], '</\zs' . s:tagname . '\ze')
877 let start_lnum = searchpair('<' . tagname . '\>', '', '</' . tagname . '\>', 'bW')
892 let tagname = matchstr(text, s:tagname . '\|!--', col('.'))
893 if tagname == '!--'
895 elseif s:get_tag('/' . tagname) != 0
897 …call searchpair('<' . tagname, '', '</' . tagname . '\zs>', 'W', '', line('.') + b:html_indent_lin…
946 let idx = match(text, '<' . s:tagname . '\s\+\zs\w')
950 let idx = match(text, '<' . s:tagname . '$')