/usr/share/kak/rc/extra/scss.kak is in kakoune 0~2016.12.20.1.3a6167ae-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | # 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
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
hook -group scss-highlight global WinSetOption filetype=scss %{ addhl ref scss }
hook global WinSetOption filetype=scss %[
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
]
hook -group scss-highlight global WinSetOption filetype=(?!scss).* %{ rmhl scss }
hook global WinSetOption filetype=(?!scss).* %{
rmhooks window scss-indent
rmhooks window scss-hooks
}
|