2014-07-16 13:10:37 +02:00
|
|
|
# http://scala-lang.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](scala) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype scala
|
2014-07-16 13:10:37 +02:00
|
|
|
}
|
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=scala %[
|
2019-03-13 19:15:59 +01:00
|
|
|
require-module scala
|
2019-04-11 01:48:46 +02:00
|
|
|
|
2022-04-30 11:22:47 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group scala-trim-indent scala-trim-indent
|
2021-04-17 10:17:01 +02:00
|
|
|
hook window InsertChar \n -group scala-insert scala-insert-on-new-line
|
2019-04-11 01:48:46 +02:00
|
|
|
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 -once -always window WinSetOption filetype=.* %{ remove-hooks window scala-.+ }
|
|
|
|
]
|
|
|
|
|
|
|
|
hook -group scala-highlight global WinSetOption filetype=scala %{
|
|
|
|
add-highlighter window/scala ref scala
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/scala }
|
2019-03-13 19:15:59 +01:00
|
|
|
}
|
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
|
|
|
|
provide-module scala %[
|
2019-03-13 19:15:59 +01:00
|
|
|
|
2014-07-16 13:10:37 +02:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/scala regions
|
|
|
|
add-highlighter shared/scala/code default-region group
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/scala/string region '"' (?<!\\)(\\\\)*" fill string
|
|
|
|
add-highlighter shared/scala/literal region ` ` fill variable
|
|
|
|
add-highlighter shared/scala/comment region -recurse /[*] /[*] [*]/ fill comment
|
|
|
|
add-highlighter shared/scala/line_comment region // $ fill comment
|
2014-07-16 13:10:37 +02:00
|
|
|
|
|
|
|
# Keywords are collected at
|
|
|
|
# http://tutorialspoint.com/scala/scala_basic_syntax.htm
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/scala/code/ regex (?:\b|\W)(@\w+|import|package)\b 0:meta
|
|
|
|
add-highlighter shared/scala/code/ regex \b(true|false|null)\b 0:value
|
|
|
|
add-highlighter shared/scala/code/ regex \b(?:class|extends|with)\s+(\w+) 0:type
|
|
|
|
add-highlighter shared/scala/code/ regex \b([A-Z]\w*)\b 0:type
|
|
|
|
add-highlighter shared/scala/code/ regex (?:def|var|val)\s+(\w+) 0:variable
|
|
|
|
add-highlighter shared/scala/code/ regex \b(become|case|catch|class|def|do|else|extends|final|finally|for|forSome|goto|if|initialize|macro|match|new|object|onTransition|return|startWith|stay|this|super|throw|trait|try|unbecome|using|val|var|when|while|with|yield)\b 0:keyword
|
|
|
|
add-highlighter shared/scala/code/ regex \b(abstract|final|implicit|implicitly|lazy|override|private|protected|require|sealed)\b 0:attribute
|
|
|
|
add-highlighter shared/scala/code/ regex (\[|\]|=>|<:|:>|=:=|::|&&|\|\|) 0:operator
|
2014-07-16 13:10:37 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-12-19 10:10:26 +01:00
|
|
|
define-command -hidden scala-trim-indent %{
|
2015-11-04 10:48:47 +01:00
|
|
|
# remove trailing white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft -itersel x s \h+$ <ret> d }
|
2014-07-16 13:10:37 +02:00
|
|
|
}
|
|
|
|
|
2021-04-17 10:17:01 +02:00
|
|
|
define-command -hidden scala-insert-on-new-line %[
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %[
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy // comments prefix and following white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft <semicolon><c-s>kx s ^\h*\K#\h* <ret> y<c-o>P<esc> }
|
2021-04-17 10:17:01 +02:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
define-command -hidden scala-indent-on-new-line %[
|
|
|
|
evaluate-commands -draft -itersel %[
|
2014-07-16 13:10:37 +02:00
|
|
|
# preserve previous line indent
|
2019-10-22 11:02:06 +02:00
|
|
|
try %[ execute-keys -draft <semicolon> K <a-&> ]
|
2014-07-16 13:10:37 +02:00
|
|
|
# filter previous line
|
2018-12-19 10:10:26 +01:00
|
|
|
try %[ execute-keys -draft k : scala-trim-indent <ret> ]
|
2014-07-16 13:10:37 +02:00
|
|
|
# indent after lines ending with {
|
2022-03-16 23:20:07 +01:00
|
|
|
try %[ execute-keys -draft k x <a-k> \{$ <ret> j <a-gt> ]
|
2020-07-30 05:25:55 +02:00
|
|
|
# deindent closing brace when after cursor
|
2022-03-16 23:20:07 +01:00
|
|
|
try %[ execute-keys -draft x <a-k> ^\h*\} <ret> gh / \} <ret> m <a-S> 1<a-&> ]
|
2014-07-16 13:10:37 +02:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden scala-indent-on-closing-curly-brace %[
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %[
|
2014-07-16 13:10:37 +02:00
|
|
|
# align to opening curly brace when alone on a line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft <a-h> <a-k> ^\h+\}$ <ret> m s \A|.\z <ret> 1<a-&> ]
|
2014-07-16 13:10:37 +02:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2018-11-28 10:39:15 +01:00
|
|
|
]
|