Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ tree-sitter-r = "1.1.0"
tree-sitter-ruby = "0.23.1"
tree-sitter-rust = "0.23.2"
tree-sitter-scala = "0.23.4"
tree-sitter-scss = "1.0.0"
tree-sitter-sequel = "0.3.8"
tree-sitter-swift = "0.7.0"
tree-sitter-toml-ng = "0.7.0"
Expand Down
15 changes: 7 additions & 8 deletions src/ops/functions/split_recursively.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,13 @@ static TREE_SITTER_LANGUAGE_BY_LANG: LazyLock<HashMap<UniCase<&'static str>, Arc
tree_sitter_c_sharp::LANGUAGE,
[],
);
add_language(&mut map, "CSS", [".css"], tree_sitter_css::LANGUAGE, []);
add_language(
&mut map,
"CSS",
[".css", ".scss"],
tree_sitter_css::LANGUAGE,
[],
);
add_language(
&mut map,
"Fortran",
Expand Down Expand Up @@ -152,13 +158,6 @@ static TREE_SITTER_LANGUAGE_BY_LANG: LazyLock<HashMap<UniCase<&'static str>, Arc
tree_sitter_scala::LANGUAGE,
[],
);
add_language(
&mut map,
"SCSS",
[".scss"],
tree_sitter_scss::language(),
[],
);
add_language(&mut map, "SQL", [".sql"], tree_sitter_sequel::LANGUAGE, []);
add_language(
&mut map,
Expand Down