Limit BufferSnapshot::chunks
to the outline item range
Co-Authored-By: Max Brunsfeld <max@zed.dev>
This commit is contained in:
parent
0a50d271b7
commit
6703264600
2 changed files with 49 additions and 12 deletions
|
@ -2247,7 +2247,6 @@ impl BufferSnapshot {
|
||||||
.map(|g| g.outline_config.as_ref().unwrap())
|
.map(|g| g.outline_config.as_ref().unwrap())
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
let mut chunks = self.chunks(0..self.len(), true);
|
|
||||||
let mut stack = Vec::<Range<usize>>::new();
|
let mut stack = Vec::<Range<usize>>::new();
|
||||||
let mut items = Vec::new();
|
let mut items = Vec::new();
|
||||||
while let Some(mat) = matches.peek() {
|
while let Some(mat) = matches.peek() {
|
||||||
|
@ -2266,9 +2265,7 @@ impl BufferSnapshot {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut text = String::new();
|
let mut buffer_ranges = Vec::new();
|
||||||
let mut name_ranges = Vec::new();
|
|
||||||
let mut highlight_ranges = Vec::new();
|
|
||||||
for capture in mat.captures {
|
for capture in mat.captures {
|
||||||
let node_is_name;
|
let node_is_name;
|
||||||
if capture.index == config.name_capture_ix {
|
if capture.index == config.name_capture_ix {
|
||||||
|
@ -2286,12 +2283,27 @@ impl BufferSnapshot {
|
||||||
range.start + self.line_len(start.row as u32) as usize - start.column;
|
range.start + self.line_len(start.row as u32) as usize - start.column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
buffer_ranges.push((range, node_is_name));
|
||||||
|
}
|
||||||
|
|
||||||
|
if buffer_ranges.is_empty() {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut text = String::new();
|
||||||
|
let mut highlight_ranges = Vec::new();
|
||||||
|
let mut name_ranges = Vec::new();
|
||||||
|
let mut chunks = self.chunks(
|
||||||
|
buffer_ranges.first().unwrap().0.start..buffer_ranges.last().unwrap().0.end,
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
for (buffer_range, is_name) in buffer_ranges {
|
||||||
if !text.is_empty() {
|
if !text.is_empty() {
|
||||||
text.push(' ');
|
text.push(' ');
|
||||||
}
|
}
|
||||||
if node_is_name {
|
if is_name {
|
||||||
let mut start = text.len();
|
let mut start = text.len();
|
||||||
let end = start + range.len();
|
let end = start + buffer_range.len();
|
||||||
|
|
||||||
// When multiple names are captured, then the matcheable text
|
// When multiple names are captured, then the matcheable text
|
||||||
// includes the whitespace in between the names.
|
// includes the whitespace in between the names.
|
||||||
|
@ -2302,12 +2314,12 @@ impl BufferSnapshot {
|
||||||
name_ranges.push(start..end);
|
name_ranges.push(start..end);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut offset = range.start;
|
let mut offset = buffer_range.start;
|
||||||
chunks.seek(offset);
|
chunks.seek(offset);
|
||||||
for mut chunk in chunks.by_ref() {
|
for mut chunk in chunks.by_ref() {
|
||||||
if chunk.text.len() > range.end - offset {
|
if chunk.text.len() > buffer_range.end - offset {
|
||||||
chunk.text = &chunk.text[0..(range.end - offset)];
|
chunk.text = &chunk.text[0..(buffer_range.end - offset)];
|
||||||
offset = range.end;
|
offset = buffer_range.end;
|
||||||
} else {
|
} else {
|
||||||
offset += chunk.text.len();
|
offset += chunk.text.len();
|
||||||
}
|
}
|
||||||
|
@ -2321,7 +2333,7 @@ impl BufferSnapshot {
|
||||||
highlight_ranges.push((start..end, style));
|
highlight_ranges.push((start..end, style));
|
||||||
}
|
}
|
||||||
text.push_str(chunk.text);
|
text.push_str(chunk.text);
|
||||||
if offset >= range.end {
|
if offset >= buffer_range.end {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -608,6 +608,31 @@ impl SyntaxSnapshot {
|
||||||
self.layers = layers;
|
self.layers = layers;
|
||||||
self.interpolated_version = text.version.clone();
|
self.interpolated_version = text.version.clone();
|
||||||
self.parsed_version = text.version.clone();
|
self.parsed_version = text.version.clone();
|
||||||
|
#[cfg(debug_assertions)]
|
||||||
|
self.check_invariants(text);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(debug_assertions)]
|
||||||
|
fn check_invariants(&self, text: &BufferSnapshot) {
|
||||||
|
let mut max_depth = 0;
|
||||||
|
let mut prev_range: Option<Range<Anchor>> = None;
|
||||||
|
for layer in self.layers.iter() {
|
||||||
|
if layer.depth == max_depth {
|
||||||
|
if let Some(prev_range) = prev_range {
|
||||||
|
match layer.range.start.cmp(&prev_range.start, text) {
|
||||||
|
Ordering::Less => panic!("layers out of order"),
|
||||||
|
Ordering::Equal => {
|
||||||
|
assert!(layer.range.end.cmp(&prev_range.end, text).is_ge())
|
||||||
|
}
|
||||||
|
Ordering::Greater => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if layer.depth < max_depth {
|
||||||
|
panic!("layers out of order")
|
||||||
|
}
|
||||||
|
max_depth = layer.depth;
|
||||||
|
prev_range = Some(layer.range.clone());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn single_tree_captures<'a>(
|
pub fn single_tree_captures<'a>(
|
||||||
|
@ -1419,7 +1444,7 @@ impl sum_tree::Summary for SyntaxLayerSummary {
|
||||||
self.max_depth = other.max_depth;
|
self.max_depth = other.max_depth;
|
||||||
self.range = other.range.clone();
|
self.range = other.range.clone();
|
||||||
} else {
|
} else {
|
||||||
if other.range.start.cmp(&self.range.start, buffer).is_lt() {
|
if self.range == (Anchor::MAX..Anchor::MAX) {
|
||||||
self.range.start = other.range.start;
|
self.range.start = other.range.start;
|
||||||
}
|
}
|
||||||
if other.range.end.cmp(&self.range.end, buffer).is_gt() {
|
if other.range.end.cmp(&self.range.end, buffer).is_gt() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue