Lines Matching refs:tag

65 	" Handling of <style> tag {{{
78 " Handling of <script> tag {{{
89 " We are inside of <script> tag. But we should also get contents
123 " Look like we may have broken tag. Check previous lines.
133 " We are in normal tag line, no need for completion at all
134 " OR reached first line without tag at all
172 " Check if we should do CSS completion inside of <style> tag
173 " or JS completion inside of <script> tag or PHP completion in case of <?
174 " tag AND &ft==php
231 " Generally if context contains > it means we are outside of tag and
243 " If context contains > it means we are already outside of tag and we
250 let tag = ''
252 let tag = split(context)[0]
253 " Detect if tag is uppercase to return in proper case,
255 if tag =~ '^[A-Z]*$'
257 let tag = tolower(tag)
384 if has_key(elements, tag) && has_key(elements, 'common')
385 let values = split(elements[tag]." ".elements['common'])
386 elseif has_key(elements, tag) && !has_key(elements, 'common')
387 let values = split(elements[tag])
388 elseif !has_key(elements, tag) && has_key(elements, 'common')
458 " 2. Find at least one <script> tag
516 if has_key(b:html_omni, tag) && has_key(b:html_omni[tag][1], attrname)
517 let values = b:html_omni[tag][1][attrname]
565 if has_key(b:html_omni, tag)
566 let attrs = keys(b:html_omni[tag][1])
590 if len(b:html_omni[tag][1][item]) > 0 && b:html_omni[tag][1][item][0] =~ '^\(BOOL\|'.item.'\)$'
602 if len(b:html_omni[tag][1][item]) > 0 && b:html_omni[tag][1][item][0] =~ '^\(BOOL\|'.item.'\)$'
616 " Close tag {{{
637 " Deal with tag completion.