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
|
|
|
}
|
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2020-07-30 05:10:43 +02:00
|
|
|
hook global WinSetOption filetype=sass %<
|
2019-03-13 22:00:59 +01:00
|
|
|
require-module sass
|
2019-04-11 01:48:46 +02:00
|
|
|
|
2022-04-30 11:22:47 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group sass-trim-indent sass-trim-indent
|
2020-07-30 05:10:43 +02:00
|
|
|
hook window InsertChar \} -group sass-indent sass-indent-on-closing-brace
|
2021-04-17 10:17:01 +02:00
|
|
|
hook window InsertChar \n -group sass-insert sass-insert-on-new-line
|
2019-04-11 01:48:46 +02:00
|
|
|
hook window InsertChar \n -group sass-indent sass-indent-on-new-line
|
|
|
|
set-option buffer extra_word_chars '_' '-'
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window sass-.+ }
|
2020-07-30 05:10:43 +02:00
|
|
|
>
|
2019-04-11 01:48:46 +02:00
|
|
|
|
|
|
|
hook -group sass-highlight global WinSetOption filetype=sass %{
|
|
|
|
add-highlighter window/sass ref sass
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/sass }
|
2019-03-13 22:00:59 +01:00
|
|
|
}
|
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
|
2020-07-30 05:10:43 +02:00
|
|
|
provide-module sass %§
|
2019-03-13 22:00:59 +01:00
|
|
|
|
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
|
2021-04-17 11:00:23 +02:00
|
|
|
add-highlighter shared/sass/comment region '//' '$' fill comment
|
|
|
|
add-highlighter shared/sass/css_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
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-12-19 10:10:26 +01:00
|
|
|
define-command -hidden sass-trim-indent %{
|
2015-11-04 10:48:47 +01:00
|
|
|
# remove trailing white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft -itersel x s \h+$ <ret> d }
|
2014-07-14 22:53:47 +02:00
|
|
|
}
|
|
|
|
|
2020-07-30 05:10:43 +02:00
|
|
|
define-command -hidden sass-indent-on-closing-brace %<
|
|
|
|
evaluate-commands -draft -itersel %<
|
|
|
|
# align closing brace to same indentation as the line that the opening brace resides on
|
|
|
|
try %[ execute-keys -draft <a-h> <a-k> ^\h+\}$ <ret> m <a-S> 1<a-&> ]
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
2021-04-17 10:17:01 +02:00
|
|
|
define-command -hidden sass-insert-on-new-line %<
|
2020-07-30 05:22:38 +02:00
|
|
|
evaluate-commands -draft -itersel %<
|
2021-04-17 10:17:01 +02:00
|
|
|
# copy // comment prefix and following white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x s ^\h*\K/{2,}\h* <ret> y gh j P }
|
2021-04-17 10:17:01 +02:00
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
define-command -hidden sass-indent-on-new-line %<
|
|
|
|
evaluate-commands -draft -itersel %<
|
2014-07-14 22:53:47 +02:00
|
|
|
# preserve previous line indent
|
2019-10-22 11:02:06 +02:00
|
|
|
try %{ execute-keys -draft <semicolon> K <a-&> }
|
2014-07-14 22:53:47 +02:00
|
|
|
# filter previous line
|
2018-12-19 10:10:26 +01:00
|
|
|
try %{ execute-keys -draft k : sass-trim-indent <ret> }
|
2014-07-14 22:53:47 +02:00
|
|
|
# avoid indent after properties and comments
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x <a-K> [:/] <ret> j <a-gt> }
|
2020-07-30 05:22:38 +02:00
|
|
|
# deindent closing brace when after cursor
|
2022-03-16 23:20:07 +01:00
|
|
|
try %[ execute-keys -draft x <a-k> ^\h*\} <ret> gh / \} <ret> m <a-S> 1<a-&> ]
|
2020-07-30 05:22:38 +02:00
|
|
|
>
|
|
|
|
>
|
2014-07-14 22:53:47 +02:00
|
|
|
|
2020-07-30 05:10:43 +02:00
|
|
|
§
|