From a81eb158be721ecfa1a44eab69194e0c9b348e2d Mon Sep 17 00:00:00 2001 From: Andrey Orst Date: Mon, 22 Jul 2019 15:56:29 +0300 Subject: [PATCH 1/3] extend Rust highlighting --- rc/filetype/rust.kak | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/rc/filetype/rust.kak b/rc/filetype/rust.kak index 50559b78c..9510a6791 100644 --- a/rc/filetype/rust.kak +++ b/rc/filetype/rust.kak @@ -6,15 +6,14 @@ hook global BufCreate .*[.](rust|rs) %{ set-option buffer filetype rust + require-module rust } # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook global WinSetOption filetype=rust %[ - require-module rust - - hook window ModeChange insert:.* -group rust-trim-indent rust-trim-indent + hook window InsertEnd .* -group rust-trim-indent rust-trim-indent 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 @@ -29,9 +28,9 @@ hook -group rust-highlight global WinSetOption filetype=rust %{ # Configuration # ‾‾‾‾‾‾‾‾‾‾‾‾‾ -hook global WinSetOption filetype=rust %[ +hook global WinSetOption filetype=rust %{ set window formatcmd 'rustfmt' -] +} provide-module rust %§ @@ -41,26 +40,28 @@ provide-module rust %§ add-highlighter shared/rust regions add-highlighter shared/rust/code default-region group -add-highlighter shared/rust/string region %{(?]+?>)?\( 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 # Commands # ‾‾‾‾‾‾‾‾ From 3c0a350079a4581ffa1f01a838751297941c7f4e Mon Sep 17 00:00:00 2001 From: Andrey Orst Date: Mon, 22 Jul 2019 18:22:44 +0300 Subject: [PATCH 2/3] require module the old way --- rc/filetype/rust.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/filetype/rust.kak b/rc/filetype/rust.kak index 9510a6791..f7d0ab08a 100644 --- a/rc/filetype/rust.kak +++ b/rc/filetype/rust.kak @@ -6,13 +6,13 @@ hook global BufCreate .*[.](rust|rs) %{ set-option buffer filetype rust - require-module rust } # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook global WinSetOption filetype=rust %[ + require-module rust hook window InsertEnd .* -group rust-trim-indent rust-trim-indent hook window InsertChar \n -group rust-indent rust-indent-on-new-line hook window InsertChar \{ -group rust-indent rust-indent-on-opening-curly-brace From 677d1efb23362caca36e8bb8da63e0390b6c62b4 Mon Sep 17 00:00:00 2001 From: Andrey Orst Date: Mon, 22 Jul 2019 22:32:26 +0300 Subject: [PATCH 3/3] move regex highlighters to the top, add method, field and function hl --- rc/filetype/rust.kak | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/rc/filetype/rust.kak b/rc/filetype/rust.kak index f7d0ab08a..2ba7d075d 100644 --- a/rc/filetype/rust.kak +++ b/rc/filetype/rust.kak @@ -50,6 +50,12 @@ 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 +add-highlighter shared/rust/code/field regex ((?]+?>)?\( 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 # the number literals syntax is defined here: # https://doc.rust-lang.org/reference.html#number-literals 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 @@ -58,10 +64,7 @@ add-highlighter shared/rust/code/attributes regex \b(?:trait|struct|enum|type|mu # https://doc.rust-lang.org/grammar.html#keywords 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 +add-highlighter shared/rust/code/return regex \breturn\b 0:meta # Commands # ‾‾‾‾‾‾‾‾