# http://sass-lang.com # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](sass) %{ set buffer filetype sass } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ addhl -group / regions -default code sass \ string '"' (? s \h+$ d } } def -hidden _sass_indent_on_new_line %{ eval -draft -itersel %{ # preserve previous line indent try %{ exec -draft K } # filter previous line try %{ exec -draft k : _sass_filter_around_selections } # copy '/' comment prefix and following white spaces try %{ exec -draft k x s ^\h*\K/\h* y gh j P } # avoid indent after properties and comments try %{ exec -draft k x [:/] j } } } # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group sass-highlight global WinSetOption filetype=sass %{ addhl ref sass } hook global WinSetOption filetype=sass %{ hook window InsertEnd .* -group sass-hooks _sass_filter_around_selections hook window InsertChar \n -group sass-indent _sass_indent_on_new_line } hook -group sass-highlight global WinSetOption filetype=(?!sass).* %{ rmhl sass } hook global WinSetOption filetype=(?!sass).* %{ rmhooks window sass-indent rmhooks window sass-hooks }