# http://sass-lang.com # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](sass) %{ set buffer filetype sass } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter -group / regions -default code sass \ string '"' (? s \h+$ d } } def -hidden sass-indent-on-new-line %{ eval -draft -itersel %{ # copy '/' comment prefix and following white spaces try %{ exec -draft k s ^\h*\K/\h* y gh j P } # preserve previous line indent try %{ exec -draft \; K } # filter previous line try %{ exec -draft k : sass-filter-around-selections } # avoid indent after properties and comments try %{ exec -draft k [:/] j } } } # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group sass-highlight global WinSetOption filetype=sass %{ add-highlighter 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).* %{ remove-highlighter sass } hook global WinSetOption filetype=(?!sass).* %{ remove-hooks window sass-indent remove-hooks window sass-hooks }