mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Fix typo in query parsing error message (#1856)
This commit is contained in:
parent
3c79bf5117
commit
79477ec6e7
@ -381,7 +381,7 @@ fn initialize_highlight(&self, scopes: &[String]) -> Option<Arc<HighlightConfigu
|
||||
&injections_query,
|
||||
&locals_query,
|
||||
)
|
||||
.unwrap_or_else(|query_error| panic!("Could not parse queries for language {:?}. Are your grammars out of sync? Try running 'hx --grammar build' and 'hx --grammar build'. This query could not be parsed: {:?}", self.language_id, query_error));
|
||||
.unwrap_or_else(|query_error| panic!("Could not parse queries for language {:?}. Are your grammars out of sync? Try running 'hx --grammar fetch' and 'hx --grammar build'. This query could not be parsed: {:?}", self.language_id, query_error));
|
||||
|
||||
config.configure(scopes);
|
||||
Some(Arc::new(config))
|
||||
|
Loading…
Reference in New Issue
Block a user