2014-07-14 22:53:47 +02:00
|
|
|
# http://sass-lang.com
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](sass) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype sass
|
2014-07-14 22:53:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter shared/sass regions
|
|
|
|
add-highlighter shared/sass/code default-region group
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/sass/single_string region '"' (?<!\\)(\\\\)*" fill string
|
|
|
|
add-highlighter shared/sass/double_string region "'" "'" fill string
|
|
|
|
add-highlighter shared/sass/comment region '/' '$' fill comment
|
2014-07-14 22:53:47 +02:00
|
|
|
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter shared/sass/code/ regex [*]|[#.][A-Za-z][A-Za-z0-9_-]* 0:variable
|
|
|
|
add-highlighter shared/sass/code/ regex &|@[A-Za-z][A-Za-z0-9_-]* 0:meta
|
|
|
|
add-highlighter shared/sass/code/ regex (#[0-9A-Fa-f]+)|((\d*\.)?\d+(em|px)) 0:value
|
|
|
|
add-highlighter shared/sass/code/ regex ([A-Za-z][A-Za-z0-9_-]*)\h*: 1:keyword
|
|
|
|
add-highlighter shared/sass/code/ regex :(before|after) 0:attribute
|
|
|
|
add-highlighter shared/sass/code/ regex !important 0:keyword
|
2014-07-14 22:53:47 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden sass-filter-around-selections %{
|
2015-11-04 10:48:47 +01:00
|
|
|
# remove trailing white spaces
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d }
|
2014-07-14 22:53:47 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden sass-indent-on-new-line %{
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %{
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy '/' comment prefix and following white spaces
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -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-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft \; K <a-&> }
|
2014-07-14 22:53:47 +02:00
|
|
|
# filter previous line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k : sass-filter-around-selections <ret> }
|
2014-07-14 22:53:47 +02:00
|
|
|
# avoid indent after properties and comments
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> <a-K> [:/] <ret> j <a-gt> }
|
2014-07-14 22:53:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-06-28 14:10:22 +02:00
|
|
|
hook -group sass-highlight global WinSetOption filetype=sass %{ add-highlighter window/sass ref sass }
|
2014-07-14 22:53:47 +02:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=sass %{
|
2018-01-21 00:35:05 +01:00
|
|
|
hook window ModeChange insert:.* -group sass-hooks sass-filter-around-selections
|
2017-01-13 01:56:30 +01:00
|
|
|
hook window InsertChar \n -group sass-indent sass-indent-on-new-line
|
2018-03-21 07:59:40 +01:00
|
|
|
set-option buffer extra_word_chars '-'
|
2014-07-14 22:53:47 +02:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group sass-highlight global WinSetOption filetype=(?!sass).* %{ remove-highlighter window/sass }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2014-07-14 22:53:47 +02:00
|
|
|
hook global WinSetOption filetype=(?!sass).* %{
|
2018-09-19 19:59:57 +02:00
|
|
|
remove-hooks window sass-.+
|
2014-07-14 22:53:47 +02:00
|
|
|
}
|