mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Update tree-sitter to latest master (#7998)
This commit is contained in:
parent
e4c95f65a6
commit
01a1e5ec2a
3 changed files with 4 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -2359,7 +2359,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tree-sitter"
|
name = "tree-sitter"
|
||||||
version = "0.20.10"
|
version = "0.20.10"
|
||||||
source = "git+https://github.com/tree-sitter/tree-sitter?rev=7d4b0110a9e92161d247a051018ee42b0513e98d#7d4b0110a9e92161d247a051018ee42b0513e98d"
|
source = "git+https://github.com/tree-sitter/tree-sitter?rev=ab09ae20d640711174b8da8a654f6b3dec93da1a#ab09ae20d640711174b8da8a654f6b3dec93da1a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"regex",
|
"regex",
|
||||||
|
|
|
@ -34,4 +34,4 @@ package.helix-tui.opt-level = 2
|
||||||
package.helix-term.opt-level = 2
|
package.helix-term.opt-level = 2
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
tree-sitter = { version = "0.20", git = "https://github.com/tree-sitter/tree-sitter", rev = "7d4b0110a9e92161d247a051018ee42b0513e98d" }
|
tree-sitter = { version = "0.20", git = "https://github.com/tree-sitter/tree-sitter", rev = "ab09ae20d640711174b8da8a654f6b3dec93da1a" }
|
||||||
|
|
|
@ -1614,7 +1614,7 @@ impl<'a> Iterator for ChunksBytes<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct RopeProvider<'a>(pub RopeSlice<'a>);
|
pub struct RopeProvider<'a>(pub RopeSlice<'a>);
|
||||||
impl<'a> TextProvider<'a> for RopeProvider<'a> {
|
impl<'a> TextProvider<&'a [u8]> for RopeProvider<'a> {
|
||||||
type I = ChunksBytes<'a>;
|
type I = ChunksBytes<'a>;
|
||||||
|
|
||||||
fn text(&mut self, node: Node) -> Self::I {
|
fn text(&mut self, node: Node) -> Self::I {
|
||||||
|
@ -1628,7 +1628,7 @@ impl<'a> TextProvider<'a> for RopeProvider<'a> {
|
||||||
struct HighlightIterLayer<'a> {
|
struct HighlightIterLayer<'a> {
|
||||||
_tree: Option<Tree>,
|
_tree: Option<Tree>,
|
||||||
cursor: QueryCursor,
|
cursor: QueryCursor,
|
||||||
captures: RefCell<iter::Peekable<QueryCaptures<'a, 'a, RopeProvider<'a>>>>,
|
captures: RefCell<iter::Peekable<QueryCaptures<'a, 'a, RopeProvider<'a>, &'a [u8]>>>,
|
||||||
config: &'a HighlightConfiguration,
|
config: &'a HighlightConfiguration,
|
||||||
highlight_end_stack: Vec<usize>,
|
highlight_end_stack: Vec<usize>,
|
||||||
scope_stack: Vec<LocalScope<'a>>,
|
scope_stack: Vec<LocalScope<'a>>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue