From 4e877de54d4ad79cf5dafca6642f63ee1a8d5ae4 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Mon, 18 Apr 2022 10:14:48 -0500 Subject: [PATCH] Fix Golang textobject queries (#2153) * log textobject query construction errors The current behavior is that invalid queries are discarded silently which makes it difficult to debug invalid textobjects (either invalid syntax or an update may have come through that changed the valid set of nodes). * fix golang textobject query `method_spec_list` used to be a named node but was removed (I think for Helix, it was when updated to pull in the support for generics). Instead of a named node for the list of method specs we have a bunch of `method_spec` children nodes now. We can match on the set of them with a `+` wildcard. Example go for this query: type Shape interface { area() float64 perimeter() float64 } Which is parsed as: (source_file (type_declaration (type_spec name: (type_identifier) type: (interface_type (method_spec name: (field_identifier) parameters: (parameter_list) result: (type_identifier)) (method_spec name: (field_identifier) parameters: (parameter_list) result: (type_identifier)))))) --- helix-core/src/syntax.rs | 4 +++- runtime/queries/go/textobjects.scm | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 72b0e9562..905b33474 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -413,7 +413,9 @@ impl LanguageConfiguration { let lang_name = self.language_id.to_ascii_lowercase(); let query_text = read_query(&lang_name, "textobjects.scm"); let lang = self.highlight_config.get()?.as_ref()?.language; - let query = Query::new(lang, &query_text).ok()?; + let query = Query::new(lang, &query_text) + .map_err(|e| log::error!("Failed to parse textobjects.scm queries: {}", e)) + .ok()?; Some(TextObjectQuery { query }) }) .as_ref() diff --git a/runtime/queries/go/textobjects.scm b/runtime/queries/go/textobjects.scm index d77e14b71..3cdf62037 100644 --- a/runtime/queries/go/textobjects.scm +++ b/runtime/queries/go/textobjects.scm @@ -12,7 +12,7 @@ (type_spec (type_identifier) (struct_type (field_declaration_list (_)?) @class.inside))) @class.around (type_declaration - (type_spec (type_identifier) (interface_type (method_spec_list (_)?) @class.inside))) @class.around + (type_spec (type_identifier) (interface_type (method_spec)+ @class.inside))) @class.around (parameter_list (_) @parameter.inside)