# http://w3.org/Style/CSS # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](css) %{ set buffer filetype css } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter -group / regions -default selector css \ declaration [{] [}] '' \ comment /[*] [*]/ '' add-highlighter -group /css/comment fill comment add-highlighter -group /css/declaration regions content \ string '"' (? s \h+$ d } } def -hidden _css_indent_on_new_line %[ eval -draft -itersel %[ # preserve previous line indent try %[ exec -draft \; K ] # filter previous line try %[ exec -draft k : _css_filter_around_selections ] # indent after lines ending with with { try %[ exec -draft k \{$ j ] ] ] def -hidden _css_indent_on_closing_curly_brace %[ eval -draft -itersel %[ # align to opening curly brace when alone on a line try %[ exec -draft ^\h+\}$ m s \`|.\' 1 ] ] ] # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group css-highlight global WinSetOption filetype=css %{ add-highlighter ref css } hook global WinSetOption filetype=css %[ hook window InsertEnd .* -group css-hooks _css_filter_around_selections hook window InsertChar \n -group css-indent _css_indent_on_new_line hook window InsertChar \} -group css-indent _css_indent_on_closing_curly_brace ] hook -group css-highlight global WinSetOption filetype=(?!css).* %{ remove-highlighter css } hook global WinSetOption filetype=(?!css).* %{ remove-hooks window css-indent remove-hooks window css-hooks }