From b6c700fce9c13d883578f9cc5e81d624e9fbd9f8 Mon Sep 17 00:00:00 2001 From: Philipp Mildenberger Date: Fri, 22 Jul 2022 03:28:32 +0200 Subject: Replace '; inherits ' in treesitter queries with queries instead of appending them (#2470) Co-authored-by: Blaž Hrastnik --- helix-core/src/syntax.rs | 26 ++++++-------------------- runtime/queries/tsq/highlights.scm | 2 +- 2 files changed, 7 insertions(+), 21 deletions(-) diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 8d7520c3..9011f835 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -328,29 +328,15 @@ fn read_query(language: &str, filename: &str) -> String { let query = load_runtime_file(language, filename).unwrap_or_default(); - // TODO: the collect() is not ideal - let inherits = INHERITS_REGEX - .captures_iter(&query) - .flat_map(|captures| { + // replaces all "; inherits (,)*" with the queries of the given language(s) + INHERITS_REGEX + .replace_all(&query, |captures: ®ex::Captures| { captures[1] .split(',') - .map(str::to_owned) - .collect::>() + .map(|language| format!("\n{}\n", read_query(language, filename))) + .collect::() }) - .collect::>(); - - if inherits.is_empty() { - return query; - } - - let mut queries = inherits - .iter() - .map(|language| read_query(language, filename)) - .collect::>(); - - queries.push(query); - - queries.concat() + .to_string() } impl LanguageConfiguration { diff --git a/runtime/queries/tsq/highlights.scm b/runtime/queries/tsq/highlights.scm index c655b994..b59514bc 100644 --- a/runtime/queries/tsq/highlights.scm +++ b/runtime/queries/tsq/highlights.scm @@ -5,7 +5,7 @@ (#eq? @function "#match?")) ; highlight inheritance comments -((query . (comment) @keyword.directive) +(((comment) @keyword.directive) (#match? @keyword.directive "^; +inherits *:")) [ -- cgit v1.2.3-70-g09d2