kakoune/rc/extra/sass.kak

66 lines
2.2 KiB
Plaintext
Raw Normal View History

2014-07-14 22:53:47 +02:00
# http://sass-lang.com
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*[.](sass) %{
set buffer filetype sass
}
# Highlighters
# ‾‾‾‾‾‾‾‾‾‾‾‾
2017-01-04 01:07:45 +01:00
add-highlighter -group / regions -default code sass \
2014-07-14 22:53:47 +02:00
string '"' (?<!\\)(\\\\)*" '' \
string "'" "'" '' \
comment '/' '$' ''
2017-01-04 01:07:45 +01:00
add-highlighter -group /sass/string fill string
add-highlighter -group /sass/comment fill comment
2014-07-14 22:53:47 +02:00
add-highlighter -group /sass/code regex [*]|[#.][A-Za-z][A-Za-z0-9_-]* 0:variable
2017-01-04 01:07:45 +01:00
add-highlighter -group /sass/code regex &|@[A-Za-z][A-Za-z0-9_-]* 0:meta
add-highlighter -group /sass/code regex (#[0-9A-Fa-f]+)|((\d*\.)?\d+(em|px)) 0:value
add-highlighter -group /sass/code regex ([A-Za-z][A-Za-z0-9_-]*)\h*: 1:keyword
add-highlighter -group /sass/code regex :(before|after) 0:attribute
add-highlighter -group /sass/code regex !important 0:keyword
2014-07-14 22:53:47 +02:00
# Commands
# ‾‾‾‾‾‾‾‾
def -hidden sass-filter-around-selections %{
# remove trailing white spaces
try %{ exec -draft -itersel <a-x> s \h+$ <ret> d }
2014-07-14 22:53:47 +02:00
}
def -hidden sass-indent-on-new-line %{
2014-07-14 22:53:47 +02:00
eval -draft -itersel %{
# copy '/' comment prefix and following white spaces
try %{ exec -draft k <a-x> s ^\h*\K/\h* <ret> y gh j P }
2014-07-14 22:53:47 +02:00
# preserve previous line indent
try %{ exec -draft \; K <a-&> }
2014-07-14 22:53:47 +02:00
# filter previous line
try %{ exec -draft k : sass-filter-around-selections <ret> }
2014-07-14 22:53:47 +02:00
# avoid indent after properties and comments
try %{ exec -draft k <a-x> <a-K> [:/] <ret> j <a-gt> }
2014-07-14 22:53:47 +02:00
}
}
# Initialization
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
2017-01-04 01:07:45 +01:00
hook -group sass-highlight global WinSetOption filetype=sass %{ add-highlighter ref sass }
2014-07-14 22:53:47 +02:00
hook global WinSetOption filetype=sass %{
hook window InsertEnd .* -group sass-hooks sass-filter-around-selections
hook window InsertChar \n -group sass-indent sass-indent-on-new-line
2014-07-14 22:53:47 +02:00
}
2017-01-04 01:07:45 +01:00
hook -group sass-highlight global WinSetOption filetype=(?!sass).* %{ remove-highlighter sass }
2014-07-14 22:53:47 +02:00
hook global WinSetOption filetype=(?!sass).* %{
2017-01-04 01:07:45 +01:00
remove-hooks window sass-indent
remove-hooks window sass-hooks
2014-07-14 22:53:47 +02:00
}