From 1c0dd04ef1ca47283082f4d4896eff295b26a6ba Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Thu, 14 Nov 2024 13:55:51 -0500 Subject: [PATCH] Allow debug printing of HighlightedNodeIds --- src/parse/tree_sitter_parser.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parse/tree_sitter_parser.rs b/src/parse/tree_sitter_parser.rs index d91b32470..4dd9c0908 100644 --- a/src/parse/tree_sitter_parser.rs +++ b/src/parse/tree_sitter_parser.rs @@ -1563,6 +1563,7 @@ fn find_delim_positions( None } +#[derive(Debug)] pub(crate) struct HighlightedNodeIds { keyword_ids: HashSet, comment_ids: HashSet,