2014-07-14 22:57:35 +02:00
|
|
|
# http://w3.org/Style/CSS
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](css) %{
|
|
|
|
set buffer filetype css
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / regions -default selector css \
|
2014-07-14 22:57:35 +02:00
|
|
|
declaration [{] [}] '' \
|
|
|
|
comment /[*] [*]/ ''
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /css/comment fill comment
|
2014-07-14 22:57:35 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /css/declaration regions content \
|
2014-07-14 22:57:35 +02:00
|
|
|
string '"' (?<!\\)(\\\\)*" '' \
|
|
|
|
string "'" "'" ''
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /css/declaration/content/string fill string
|
2014-07-14 22:57:35 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /css/declaration regex (#[0-9A-Fa-f]+)|((\d*\.)?\d+(em|px)) 0:value
|
|
|
|
add-highlighter -group /css/declaration regex ([A-Za-z][A-Za-z0-9_-]*)\h*: 1:keyword
|
|
|
|
add-highlighter -group /css/declaration regex :(before|after) 0:attribute
|
|
|
|
add-highlighter -group /css/declaration regex !important 0:keyword
|
2014-07-14 22:57:35 +02:00
|
|
|
|
|
|
|
# element#id element.class
|
|
|
|
# universal selector
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /css/selector regex [A-Za-z][A-Za-z0-9_-]* 0:keyword
|
2017-02-10 03:43:29 +01:00
|
|
|
add-highlighter -group /css/selector regex [*]|[#.][A-Za-z][A-Za-z0-9_-]* 0:variable
|
2014-07-14 22:57:35 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden css-filter-around-selections %{
|
2015-11-04 10:48:47 +01:00
|
|
|
# remove trailing white spaces
|
|
|
|
try %{ exec -draft -itersel <a-x> s \h+$ <ret> d }
|
2014-07-14 22:57:35 +02:00
|
|
|
}
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden css-indent-on-new-line %[
|
2014-07-14 22:57:35 +02:00
|
|
|
eval -draft -itersel %[
|
|
|
|
# preserve previous line indent
|
2017-01-13 01:50:03 +01:00
|
|
|
try %[ exec -draft \; K <a-&> ]
|
2014-07-14 22:57:35 +02:00
|
|
|
# filter previous line
|
2017-01-13 01:56:30 +01:00
|
|
|
try %[ exec -draft k : css-filter-around-selections <ret> ]
|
2014-07-14 22:57:35 +02:00
|
|
|
# indent after lines ending with with {
|
2017-01-13 01:50:03 +01:00
|
|
|
try %[ exec -draft k <a-x> <a-k> \{$ <ret> j <a-gt> ]
|
2014-07-14 22:57:35 +02:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden css-indent-on-closing-curly-brace %[
|
2014-07-14 22:57:35 +02:00
|
|
|
eval -draft -itersel %[
|
|
|
|
# align to opening curly brace when alone on a line
|
|
|
|
try %[ exec -draft <a-h> <a-k> ^\h+\}$ <ret> m s \`|.\' <ret> 1<a-&> ]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group css-highlight global WinSetOption filetype=css %{ add-highlighter ref css }
|
2014-07-14 22:57:35 +02:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=css %[
|
2017-01-13 01:56:30 +01:00
|
|
|
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
|
2014-07-14 22:57:35 +02:00
|
|
|
]
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group css-highlight global WinSetOption filetype=(?!css).* %{ remove-highlighter css }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2014-07-14 22:57:35 +02:00
|
|
|
hook global WinSetOption filetype=(?!css).* %{
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window css-indent
|
|
|
|
remove-hooks window css-hooks
|
2014-07-14 22:57:35 +02:00
|
|
|
}
|