# http://scala-lang.org # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](scala) %{ set buffer filetype scala } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ addhl -group / regions -default code scala \ string '"' (?|<:|:>|=:=|::|&&|\|\|)\b 0:operator addhl -group /scala/code regex "'[_A-Za-z0-9$]+" 0:identifier # 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 %[ # preserve previous line indent try %[ exec -draft K ] # filter previous line try %[ exec -draft k : _scala_filter_around_selections ] # copy // comments prefix and following white spaces try %[ exec -draft k x s ^\h*\K#\h* y gh j P ] # indent after lines ending with { try %[ exec -draft k x \{$ 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 %{ addhl 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).* %{ rmhl scala } hook global WinSetOption filetype=(?!scala).* %{ rmhooks window scala-indent rmhooks window scala-hooks }