Lines Matching refs:style
65 " Handling of <style> tag {{{
66 let stylestart = searchpair('<style\>', '', '<\/style\>', "bnW")
67 let styleend = searchpair('<style\>', '', '<\/style\>', "nW")
172 " Check if we should do CSS completion inside of <style> tag
232 " should abandon action - with one exception: <style> span { bo
233 if context =~ 'style[^>]\{-}>[^<]\{-}$'
267 " Sort out style, class, and on* cases
268 if context =~? "\\(on[a-z]*\\|id\\|style\\|class\\)\\s*=\\s*[\"']"
283 if headjoined =~ '<style'
437 elseif context =~? "style\\s*=\\s*[\"'][^\"']*$"
481 let stripbase = matchstr(context, ".*\\(on[a-zA-Z]*\\|style\\|class\\)\\s*=\\s*[\"']\\zs.*")
482 " Now we have context stripped from all chars up to style/class.
483 " It may fail with some strange style value combinations.