Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Jul 12, 2023
1 parent f6ceb2a commit 8614910
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/parse/tree_sitter_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,9 @@ pub fn from_language(language: guess::Language) -> TreeSitterConfig {
let language = unsafe { tree_sitter_haskell() };
TreeSitterConfig {
language,
atom_nodes: vec!["qualified_variable", "qualified_module"].into_iter().collect(),
atom_nodes: vec!["qualified_variable", "qualified_module"]
.into_iter()
.collect(),
delimiter_tokens: vec![("[", "]"), ("(", ")")],
highlight_query: ts::Query::new(
language,
Expand Down

0 comments on commit 8614910

Please sign in to comment.