kakoune/rc/base/css.kak

79 lines
2.6 KiB
Plaintext
Raw Normal View History

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
add-highlighter -group /css/selector regex [*]|[#.][A-Za-z][A-Za-z0-9_-]* 0:identifier
2014-07-14 22:57:35 +02:00
# Commands
# ‾‾‾‾‾‾‾‾
def -hidden css-filter-around-selections %{
# remove trailing white spaces
try %{ exec -draft -itersel <a-x> s \h+$ <ret> d }
2014-07-14 22:57:35 +02:00
}
def -hidden css-indent-on-new-line %[
2014-07-14 22:57:35 +02:00
eval -draft -itersel %[
# preserve previous line indent
try %[ exec -draft \; K <a-&> ]
2014-07-14 22:57:35 +02:00
# filter previous line
try %[ exec -draft k : css-filter-around-selections <ret> ]
2014-07-14 22:57:35 +02:00
# indent after lines ending with with {
try %[ exec -draft k <a-x> <a-k> \{$ <ret> j <a-gt> ]
2014-07-14 22:57:35 +02: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
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
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 }
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
}