2014-07-21 01:18:49 +02:00
|
|
|
# http://rust-lang.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](rust|rs) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype rust
|
2014-07-21 01:18:49 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=rust %[
|
2019-07-22 17:22:44 +02:00
|
|
|
require-module rust
|
2019-07-22 14:56:29 +02:00
|
|
|
hook window InsertEnd .* -group rust-trim-indent rust-trim-indent
|
2019-04-10 05:54:19 +02:00
|
|
|
hook window InsertChar \n -group rust-indent rust-indent-on-new-line
|
|
|
|
hook window InsertChar \{ -group rust-indent rust-indent-on-opening-curly-brace
|
|
|
|
hook window InsertChar [)}] -group rust-indent rust-indent-on-closing
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window rust-.+ }
|
|
|
|
]
|
|
|
|
|
|
|
|
hook -group rust-highlight global WinSetOption filetype=rust %{
|
|
|
|
add-highlighter window/rust ref rust
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/rust }
|
2019-03-13 19:15:59 +01:00
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
# Configuration
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-07-22 14:56:29 +02:00
|
|
|
hook global WinSetOption filetype=rust %{
|
2019-04-10 05:54:19 +02:00
|
|
|
set window formatcmd 'rustfmt'
|
2019-07-22 14:56:29 +02:00
|
|
|
}
|
2019-04-10 05:54:19 +02:00
|
|
|
|
|
|
|
|
2019-04-13 21:57:57 +02:00
|
|
|
provide-module rust %§
|
2019-03-13 19:15:59 +01:00
|
|
|
|
2014-07-21 01:18:49 +02:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/rust regions
|
|
|
|
add-highlighter shared/rust/code default-region group
|
2019-07-22 14:56:29 +02:00
|
|
|
add-highlighter shared/rust/string region %{(?<!')"} (?<!\\)(\\\\)*" fill string
|
|
|
|
add-highlighter shared/rust/raw_string region -match-capture %{(?<!')r(#*)"} %{"(#*)} fill string
|
|
|
|
add-highlighter shared/rust/comment region -recurse "/\*" "/\*" "\*/" fill comment
|
|
|
|
add-highlighter shared/rust/line_comment region "//" "$" fill comment
|
|
|
|
add-highlighter shared/rust/macro_attributes region "#!?\[" "\]" fill meta
|
|
|
|
|
|
|
|
add-highlighter shared/rust/code/byte_literal regex "'\\\\?.'" 0:value
|
|
|
|
add-highlighter shared/rust/code/long_quoted regex "('\w+)[^']" 1:meta
|
|
|
|
add-highlighter shared/rust/code/field_or_parameter regex (_?\w+)(?::)(?!:) 1:variable
|
|
|
|
add-highlighter shared/rust/code/namespace regex [a-zA-Z](\w+)?(\h+)?(?=::) 0:module
|
2016-02-07 14:51:00 +01:00
|
|
|
# the number literals syntax is defined here:
|
|
|
|
# https://doc.rust-lang.org/reference.html#number-literals
|
2019-07-22 14:56:29 +02:00
|
|
|
add-highlighter shared/rust/code/values regex \b(?:self|true|false|[0-9][_0-9]*(?:\.[0-9][_0-9]*|(?:\.[0-9][_0-9]*)?E[\+\-][_0-9]+)(?:f(?:32|64))?|(?:0x[_0-9a-fA-F]+|0o[_0-7]+|0b[_01]+|[0-9][_0-9]*)(?:(?:i|u|f)(?:8|16|32|64|128|size))?)\b 0:value
|
|
|
|
add-highlighter shared/rust/code/attributes regex \b(?:trait|struct|enum|type|mut|ref|static|const)\b 0:attribute
|
2016-02-07 14:51:00 +01:00
|
|
|
# the language keywords are defined here, but many of them are reserved and unused yet:
|
|
|
|
# https://doc.rust-lang.org/grammar.html#keywords
|
2019-07-22 14:56:29 +02:00
|
|
|
add-highlighter shared/rust/code/keywords regex \b(?:let|as|fn|return|match|if|else|loop|for|in|while|break|continue|move|box|where|impl|dyn|pub|unsafe|async|await|mod|crate|use|extern)\b 0:keyword
|
|
|
|
add-highlighter shared/rust/code/builtin_types regex \b(?:u8|u16|u32|u64|u128|usize|i8|i16|i32|i64|i128|isize|f32|f64|bool|char|str|Self)\b 0:type
|
|
|
|
add-highlighter shared/rust/code/user_defined_type regex \b[A-Z]\w*\b 0:type
|
|
|
|
add-highlighter shared/rust/code/function_declaration regex (?:fn\h+)(_?\w+)(?:<[^>]+?>)?\( 1:function
|
|
|
|
add-highlighter shared/rust/code/variable_declaration regex (?:let\h+(?:mut\h+)?)(_?\w+) 1:variable
|
|
|
|
add-highlighter shared/rust/code/macro regex \b[A-z0-9_]+! 0:meta
|
2014-07-21 01:18:49 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-12-19 10:10:26 +01:00
|
|
|
define-command -hidden rust-trim-indent %{
|
2015-11-04 10:48:47 +01:00
|
|
|
# remove trailing white spaces
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d }
|
2014-07-21 01:18:49 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden rust-indent-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
|
2017-11-04 11:54:48 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> s ^\h*\K//[!/]?\h* <ret> y gh j P }
|
2014-07-21 01:18:49 +02:00
|
|
|
# preserve previous line indent
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft \; K <a-&> }
|
2014-07-21 01:18:49 +02:00
|
|
|
# filter previous line
|
2018-12-19 10:10:26 +01:00
|
|
|
try %{ execute-keys -draft k : rust-trim-indent <ret> }
|
2014-07-21 01:18:49 +02:00
|
|
|
# indent after lines ending with { or (
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft k <a-x> <a-k> [{(]\h*$ <ret> j <a-gt> ]
|
2019-03-27 18:52:20 +01:00
|
|
|
# indent after lines ending with [{(].+ and move first parameter to own line
|
|
|
|
try %< execute-keys -draft [c[({],[)}] <ret> <a-k> \A[({][^\n]+\n[^\n]*\n?\z <ret> L i<ret><esc> <gt> <a-S> <a-&> >
|
2015-08-02 12:59:49 +02:00
|
|
|
>
|
2014-07-21 01:18:49 +02:00
|
|
|
~
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden rust-indent-on-opening-curly-brace %[
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %_
|
2014-07-21 01:18:49 +02:00
|
|
|
# align indent with opening paren when { is entered on a new line after the closing paren
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft h <a-F> ) M <a-k> \A\(.*\)\h*\n\h*\{\z <ret> s \A|.\z <ret> 1<a-&> ]
|
2014-07-21 01:18:49 +02:00
|
|
|
_
|
|
|
|
]
|
|
|
|
|
2019-03-27 18:52:20 +01:00
|
|
|
define-command -hidden rust-indent-on-closing %[
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %_
|
2019-03-27 18:52:20 +01:00
|
|
|
# align to opening curly brace or paren when alone on a line
|
|
|
|
try %< execute-keys -draft <a-h> <a-k> ^\h*[)}]$ <ret> h m <a-S> 1<a-&> >
|
2014-07-21 01:18:49 +02:00
|
|
|
_
|
|
|
|
]
|
|
|
|
|
2019-04-13 21:57:57 +02:00
|
|
|
§
|