# http://scala-lang.org # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](scala) %{ set buffer filetype scala } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter -group / regions -default code scala \ string '"' (?|<:|:>|=:=|::|&&|\|\|)\b 0:operator add-highlighter -group /scala/code regex "'[_A-Za-z0-9$]+" 0:variable # Commands # ‾‾‾‾‾‾‾‾ def -hidden scala-filter-around-selections %{ # remove trailing white spaces try %{ exec -draft -itersel s \h+$ d } } def -hidden scala-indent-on-new-line %[ eval -draft -itersel %[ # copy // comments 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 : scala-filter-around-selections ] # indent after lines ending with { try %[ exec -draft k \{$ j ] ] ] def -hidden scala-indent-on-closing-curly-brace %[ eval -draft -itersel %[ # align to opening curly brace when alone on a line try %[ exec -draft ^\h+\}$ m s \`|.\' 1 ] ] ] # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group scala-highlight global WinSetOption filetype=scala %{ add-highlighter ref scala } hook global WinSetOption filetype=scala %[ hook window InsertEnd .* -group scala-hooks scala-filter-around-selections hook window InsertChar \n -group scala-indent scala-indent-on-new-line hook window InsertChar \} -group scala-indent scala-indent-on-closing-curly-brace ] hook -group scala-highlight global WinSetOption filetype=(?!scala).* %{ remove-highlighter scala } hook global WinSetOption filetype=(?!scala).* %{ remove-hooks window scala-indent remove-hooks window scala-hooks }