Skip to content

Commit d238d51

Browse files
committed
tree-house
_ _
1 parent d46adcb commit d238d51

File tree

98 files changed

+2348
-4261
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+2348
-4261
lines changed

Cargo.lock

Lines changed: 27 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ package.helix-tui.opt-level = 2
3737
package.helix-term.opt-level = 2
3838

3939
[workspace.dependencies]
40-
tree-sitter = { version = "0.22" }
40+
tree-house = { version = "0.1.0-beta.1", default-features = false }
4141
nucleo = "0.5.0"
4242
slotmap = "1.0.7"
4343
thiserror = "2.0"

helix-core/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,12 @@ unicode-segmentation.workspace = true
3232
unicode-width = "=0.1.12"
3333
unicode-general-category = "1.0"
3434
slotmap.workspace = true
35-
tree-sitter.workspace = true
35+
tree-house.workspace = true
3636
once_cell = "1.20"
3737
arc-swap = "1"
3838
regex = "1"
3939
bitflags.workspace = true
40-
ahash = "0.8.11"
41-
hashbrown = { version = "0.14.5", features = ["raw"] }
40+
foldhash.workspace = true
4241
url = "2.5.4"
4342

4443
log = "0.4"

helix-core/src/comment.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
use smallvec::SmallVec;
55

66
use crate::{
7-
syntax::BlockCommentToken, Change, Range, Rope, RopeSlice, Selection, Tendril, Transaction,
7+
syntax::config::BlockCommentToken, Change, Range, Rope, RopeSlice, Selection, Tendril,
8+
Transaction,
89
};
910
use helix_stdx::rope::RopeSliceExt;
1011
use std::borrow::Cow;

helix-core/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::syntax::{Configuration, Loader, LoaderError};
1+
use crate::syntax::{config::Configuration, Loader, LoaderError};
22

33
/// Language configuration based on built-in languages.toml.
44
pub fn default_lang_config() -> Configuration {

0 commit comments

Comments
 (0)