mirror of https://github.com/helix-editor/helix
Merge branch 'helix-editor:master' into scroll_preview_fixed
commit
5b0547a665
@ -0,0 +1,142 @@
|
|||||||
|
; identifiers
|
||||||
|
; -----------
|
||||||
|
(identifier) @variable
|
||||||
|
|
||||||
|
; Pragma
|
||||||
|
; -----------
|
||||||
|
(pragma_directive) @keyword.directive
|
||||||
|
|
||||||
|
; Include
|
||||||
|
; -----------
|
||||||
|
(include_directive) @keyword.directive
|
||||||
|
|
||||||
|
; Literals
|
||||||
|
; --------
|
||||||
|
(string) @string
|
||||||
|
(int_literal) @constant.numeric.integer
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
; Definitions
|
||||||
|
; -----------
|
||||||
|
(function_definition
|
||||||
|
name: (identifier) @keyword.function)
|
||||||
|
|
||||||
|
(template_definition
|
||||||
|
name: (identifier) @keyword.function)
|
||||||
|
|
||||||
|
; Use contructor coloring for special functions
|
||||||
|
(main_component_definition) @constructor
|
||||||
|
|
||||||
|
; Invocations
|
||||||
|
(call_expression . (identifier) @function)
|
||||||
|
|
||||||
|
; Function parameters
|
||||||
|
(parameter name: (identifier) @variable.parameter)
|
||||||
|
|
||||||
|
; Members
|
||||||
|
(member_expression property: (property_identifier) @variable.other.member)
|
||||||
|
|
||||||
|
; Tokens
|
||||||
|
; -------
|
||||||
|
|
||||||
|
; Keywords
|
||||||
|
[
|
||||||
|
"signal"
|
||||||
|
"var"
|
||||||
|
"component"
|
||||||
|
] @keyword.storage.type
|
||||||
|
|
||||||
|
[ "include" ] @keyword.control.import
|
||||||
|
|
||||||
|
[
|
||||||
|
"public"
|
||||||
|
"input"
|
||||||
|
"output"
|
||||||
|
] @keyword.storage.modifier
|
||||||
|
|
||||||
|
[
|
||||||
|
"for"
|
||||||
|
"while"
|
||||||
|
] @keyword.control.repeat
|
||||||
|
|
||||||
|
[
|
||||||
|
"if"
|
||||||
|
"else"
|
||||||
|
] @keyword.control.conditional
|
||||||
|
|
||||||
|
[
|
||||||
|
"return"
|
||||||
|
] @keyword.control.return
|
||||||
|
|
||||||
|
[
|
||||||
|
"function"
|
||||||
|
"template"
|
||||||
|
] @keyword.function
|
||||||
|
|
||||||
|
; Punctuation
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
[
|
||||||
|
"."
|
||||||
|
","
|
||||||
|
";"
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
; Operators
|
||||||
|
; https://docs.circom.io/circom-language/basic-operators
|
||||||
|
[
|
||||||
|
"="
|
||||||
|
"?"
|
||||||
|
"&&"
|
||||||
|
"||"
|
||||||
|
"!"
|
||||||
|
"<"
|
||||||
|
">"
|
||||||
|
"<="
|
||||||
|
">="
|
||||||
|
"=="
|
||||||
|
"!="
|
||||||
|
"+"
|
||||||
|
"-"
|
||||||
|
"*"
|
||||||
|
"**"
|
||||||
|
"/"
|
||||||
|
"\\"
|
||||||
|
"%"
|
||||||
|
"+="
|
||||||
|
"-="
|
||||||
|
"*="
|
||||||
|
"**="
|
||||||
|
"/="
|
||||||
|
"\\="
|
||||||
|
"%="
|
||||||
|
"++"
|
||||||
|
"--"
|
||||||
|
"&"
|
||||||
|
"|"
|
||||||
|
"~"
|
||||||
|
"^"
|
||||||
|
">>"
|
||||||
|
"<<"
|
||||||
|
"&="
|
||||||
|
"|="
|
||||||
|
; "\~=" ; bug, uncomment and circom will not highlight
|
||||||
|
"^="
|
||||||
|
">>="
|
||||||
|
"<<="
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
[
|
||||||
|
"<=="
|
||||||
|
"==>"
|
||||||
|
"<--"
|
||||||
|
"-->"
|
||||||
|
"==="
|
||||||
|
] @operator
|
@ -0,0 +1,9 @@
|
|||||||
|
(function_definition) @local.scope
|
||||||
|
(template_definition) @local.scope
|
||||||
|
(main_component_definition) @local.scope
|
||||||
|
(block_statement) @local.scope
|
||||||
|
|
||||||
|
(parameter name: (identifier) @local.definition) @local.definition
|
||||||
|
|
||||||
|
|
||||||
|
(identifier) @local.reference
|
@ -0,0 +1,33 @@
|
|||||||
|
use helix_view::theme::Loader;
|
||||||
|
|
||||||
|
use crate::{path, DynError};
|
||||||
|
|
||||||
|
pub fn theme_check() -> Result<(), DynError> {
|
||||||
|
let theme_names = [
|
||||||
|
vec!["default".to_string(), "base16_default".to_string()],
|
||||||
|
Loader::read_names(&path::themes()),
|
||||||
|
]
|
||||||
|
.concat();
|
||||||
|
let loader = Loader::new(&[path::runtime()]);
|
||||||
|
let mut errors_present = false;
|
||||||
|
|
||||||
|
for name in theme_names {
|
||||||
|
let (_, warnings) = loader.load_with_warnings(&name).unwrap();
|
||||||
|
|
||||||
|
if !warnings.is_empty() {
|
||||||
|
errors_present = true;
|
||||||
|
println!("Theme '{name}' loaded with errors:");
|
||||||
|
for warning in warnings {
|
||||||
|
println!("\t* {}", warning);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
match errors_present {
|
||||||
|
true => Err("Errors found when loading bundled themes".into()),
|
||||||
|
false => {
|
||||||
|
println!("Theme check successful!");
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue