kakoune/rc/base/css.kak

78 lines
2.9 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-option buffer filetype css
2014-07-14 22:57:35 +02:00
}
# Highlighters
# ‾‾‾‾‾‾‾‾‾‾‾‾
add-highlighter shared/css regions
add-highlighter shared/css/selector default-region group
add-highlighter shared/css/declaration region [{] [}] regions
add-highlighter shared/css/comment region /[*] [*]/ fill comment
2014-07-14 22:57:35 +02:00
add-highlighter shared/css/declaration/base default-region group
add-highlighter shared/css/declaration/double_string region '"' (?<!\\)(\\\\)*" fill string
add-highlighter shared/css/declaration/single_string region "'" "'" fill string
2014-07-14 22:57:35 +02:00
# https://developer.mozilla.org/en-US/docs/Web/CSS/length
add-highlighter shared/css/declaration/base/ regex (#[0-9A-Fa-f]+)|((\d*\.)?\d+(ch|cm|em|ex|mm|pc|pt|px|rem|vh|vmax|vmin|vw)) 0:value
add-highlighter shared/css/declaration/base/ regex ([A-Za-z][A-Za-z0-9_-]*)\h*: 1:keyword
add-highlighter shared/css/declaration/base/ regex :(before|after) 0:attribute
add-highlighter shared/css/declaration/base/ regex !important 0:keyword
2014-07-14 22:57:35 +02:00
# element#id element.class
# universal selector
add-highlighter shared/css/selector/ regex [A-Za-z][A-Za-z0-9_-]* 0:keyword
add-highlighter shared/css/selector/ regex [*]|[#.][A-Za-z][A-Za-z0-9_-]* 0:variable
2014-07-14 22:57:35 +02:00
# Commands
# ‾‾‾‾‾‾‾‾
define-command -hidden css-filter-around-selections %{
# remove trailing white spaces
try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d }
2014-07-14 22:57:35 +02:00
}
define-command -hidden css-indent-on-new-line %[
evaluate-commands -draft -itersel %[
2014-07-14 22:57:35 +02:00
# preserve previous line indent
try %[ execute-keys -draft \; K <a-&> ]
2014-07-14 22:57:35 +02:00
# filter previous line
try %[ execute-keys -draft k : css-filter-around-selections <ret> ]
2014-07-14 22:57:35 +02:00
# indent after lines ending with with {
try %[ execute-keys -draft k <a-x> <a-k> \{$ <ret> j <a-gt> ]
2014-07-14 22:57:35 +02:00
]
]
define-command -hidden css-indent-on-closing-curly-brace %[
evaluate-commands -draft -itersel %[
2014-07-14 22:57:35 +02:00
# align to opening curly brace when alone on a line
try %[ execute-keys -draft <a-h> <a-k> ^\h+\}$ <ret> m s \A|.\z <ret> 1<a-&> ]
2014-07-14 22:57:35 +02:00
]
]
# Initialization
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
hook -group css-highlight global WinSetOption filetype=css %{ add-highlighter window/css ref css }
2014-07-14 22:57:35 +02:00
hook global WinSetOption filetype=css %[
hook window ModeChange insert:.* -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
2018-03-21 07:59:40 +01:00
set-option buffer extra_word_chars '-'
2014-07-14 22:57:35 +02:00
]
hook -group css-highlight global WinSetOption filetype=(?!css).* %{ remove-highlighter window/css }
2014-07-14 22:57:35 +02:00
hook global WinSetOption filetype=(?!css).* %{
2018-09-19 19:59:57 +02:00
remove-hooks window css-.+
2014-07-14 22:57:35 +02:00
}