2014-07-21 01:00:59 +02:00
|
|
|
# http://sass-lang.com
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# require css.kak
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](scss) %{
|
|
|
|
set buffer filetype scss
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
addhl -group / group scss
|
|
|
|
|
|
|
|
addhl -group /scss ref css
|
|
|
|
|
|
|
|
addhl -group /scss regex @[A-Za-z][A-Za-z0-9_-]* 0:meta
|
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
def -hidden _scss_filter_around_selections _css_filter_around_selections
|
|
|
|
def -hidden _scss_indent_on_new_line _css_indent_on_new_line
|
|
|
|
def -hidden _scss_indent_on_closing_curly_brace _css_indent_on_closing_curly_brace
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group scss-highlight global WinSetOption filetype=scss %{ addhl ref scss }
|
2014-07-21 01:00:59 +02:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=scss %[
|
2014-07-21 01:00:59 +02:00
|
|
|
hook window InsertEnd .* -group scss-hooks _scss_filter_around_selections
|
|
|
|
hook window InsertChar \n -group scss-indent _scss_indent_on_new_line
|
|
|
|
hook window InsertChar \} -group scss-indent _scss_indent_on_closing_curly_brace
|
|
|
|
]
|
|
|
|
|
2016-10-01 15:09:59 +02:00
|
|
|
hook -group scss-highlight global WinSetOption filetype=(?!scss).* %{ rmhl scss }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2014-07-21 01:00:59 +02:00
|
|
|
hook global WinSetOption filetype=(?!scss).* %{
|
|
|
|
rmhooks window scss-indent
|
|
|
|
rmhooks window scss-hooks
|
|
|
|
}
|