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
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /sass/code regex [*]|[#.][A-Za-z][A-Za-z0-9_-]* 0:identifier
|
|
|
|
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 %{
|
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:53:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def -hidden _sass_indent_on_new_line %{
|
|
|
|
eval -draft -itersel %{
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy '/' comment prefix and following white spaces
|
2017-01-13 01:50:03 +01:00
|
|
|
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
|
2017-01-13 01:50:03 +01:00
|
|
|
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> }
|
|
|
|
# avoid indent after properties and comments
|
2017-01-13 01:50:03 +01:00
|
|
|
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
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=sass %{
|
2014-07-14 22:53:47 +02:00
|
|
|
hook window InsertEnd .* -group sass-hooks _sass_filter_around_selections
|
|
|
|
hook window InsertChar \n -group sass-indent _sass_indent_on_new_line
|
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group sass-highlight global WinSetOption filetype=(?!sass).* %{ remove-highlighter sass }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
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
|
|
|
}
|