mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Ignore layers without highlight captures, avoid cloning ranges
This commit is contained in:
parent
5135fa37eb
commit
72eb2ce1f1
1 changed files with 13 additions and 11 deletions
|
@ -638,7 +638,7 @@ impl Syntax {
|
||||||
let mut layers = self
|
let mut layers = self
|
||||||
.layers
|
.layers
|
||||||
.iter()
|
.iter()
|
||||||
.map(|(_, layer)| {
|
.flat_map(|(_, layer)| {
|
||||||
// Reuse a cursor from the pool if available.
|
// Reuse a cursor from the pool if available.
|
||||||
let mut cursor = PARSER.with(|ts_parser| {
|
let mut cursor = PARSER.with(|ts_parser| {
|
||||||
let highlighter = &mut ts_parser.borrow_mut();
|
let highlighter = &mut ts_parser.borrow_mut();
|
||||||
|
@ -656,7 +656,7 @@ impl Syntax {
|
||||||
// cursor_ref.set_byte_range(range.clone().unwrap_or(0..usize::MAX));
|
// cursor_ref.set_byte_range(range.clone().unwrap_or(0..usize::MAX));
|
||||||
cursor_ref.set_byte_range(0..usize::MAX);
|
cursor_ref.set_byte_range(0..usize::MAX);
|
||||||
|
|
||||||
let captures = cursor_ref
|
let mut captures = cursor_ref
|
||||||
.captures(
|
.captures(
|
||||||
&layer.config.query,
|
&layer.config.query,
|
||||||
layer.tree().root_node(),
|
layer.tree().root_node(),
|
||||||
|
@ -664,7 +664,12 @@ impl Syntax {
|
||||||
)
|
)
|
||||||
.peekable();
|
.peekable();
|
||||||
|
|
||||||
HighlightIterLayer {
|
// If there's no captures, skip the layer
|
||||||
|
if captures.peek().is_none() {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
Some(HighlightIterLayer {
|
||||||
highlight_end_stack: Vec::new(),
|
highlight_end_stack: Vec::new(),
|
||||||
scope_stack: vec![LocalScope {
|
scope_stack: vec![LocalScope {
|
||||||
inherits: false,
|
inherits: false,
|
||||||
|
@ -674,10 +679,10 @@ impl Syntax {
|
||||||
cursor,
|
cursor,
|
||||||
_tree: None,
|
_tree: None,
|
||||||
captures,
|
captures,
|
||||||
config: layer.config.as_ref(), // TODO: just reuse
|
config: layer.config.as_ref(), // TODO: just reuse `layer`
|
||||||
depth: layer.depth, // TODO: just reuse
|
depth: layer.depth, // TODO: just reuse `layer`
|
||||||
ranges: layer.ranges.clone(),
|
ranges: &layer.ranges, // TODO: temp
|
||||||
}
|
})
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
@ -701,9 +706,6 @@ impl Syntax {
|
||||||
last_highlight_range: None,
|
last_highlight_range: None,
|
||||||
};
|
};
|
||||||
result.sort_layers();
|
result.sort_layers();
|
||||||
for layer in &result.layers {
|
|
||||||
log::info!("> {:?} {:?}", layer.depth, layer.ranges); // <- for some reason layers are reversed here
|
|
||||||
}
|
|
||||||
result
|
result
|
||||||
}
|
}
|
||||||
// on_tokenize
|
// on_tokenize
|
||||||
|
@ -987,7 +989,7 @@ struct HighlightIterLayer<'a> {
|
||||||
highlight_end_stack: Vec<usize>,
|
highlight_end_stack: Vec<usize>,
|
||||||
scope_stack: Vec<LocalScope<'a>>,
|
scope_stack: Vec<LocalScope<'a>>,
|
||||||
depth: usize,
|
depth: usize,
|
||||||
ranges: Vec<Range>, // TEMP
|
ranges: &'a [Range],
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> fmt::Debug for HighlightIterLayer<'a> {
|
impl<'a> fmt::Debug for HighlightIterLayer<'a> {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue