mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Piotr/z 2590 search result marks jump around in scrollbar as cursor (#2700)
This closes ticket Z-2590 reported by @JosephTLyons . Thanks Joseph =) Release Notes: - N/A
This commit is contained in:
commit
3c1ab3d0b8
@ -7222,6 +7222,47 @@ impl Editor {
|
|||||||
}
|
}
|
||||||
results
|
results
|
||||||
}
|
}
|
||||||
|
pub fn background_highlights_in_range_for<T: 'static>(
|
||||||
|
&self,
|
||||||
|
search_range: Range<Anchor>,
|
||||||
|
display_snapshot: &DisplaySnapshot,
|
||||||
|
theme: &Theme,
|
||||||
|
) -> Vec<(Range<DisplayPoint>, Color)> {
|
||||||
|
let mut results = Vec::new();
|
||||||
|
let buffer = &display_snapshot.buffer_snapshot;
|
||||||
|
let Some((color_fetcher, ranges)) = self.background_highlights
|
||||||
|
.get(&TypeId::of::<T>()) else {
|
||||||
|
return vec![];
|
||||||
|
};
|
||||||
|
|
||||||
|
let color = color_fetcher(theme);
|
||||||
|
let start_ix = match ranges.binary_search_by(|probe| {
|
||||||
|
let cmp = probe.end.cmp(&search_range.start, buffer);
|
||||||
|
if cmp.is_gt() {
|
||||||
|
Ordering::Greater
|
||||||
|
} else {
|
||||||
|
Ordering::Less
|
||||||
|
}
|
||||||
|
}) {
|
||||||
|
Ok(i) | Err(i) => i,
|
||||||
|
};
|
||||||
|
for range in &ranges[start_ix..] {
|
||||||
|
if range.start.cmp(&search_range.end, buffer).is_ge() {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
let start = range
|
||||||
|
.start
|
||||||
|
.to_point(buffer)
|
||||||
|
.to_display_point(display_snapshot);
|
||||||
|
let end = range
|
||||||
|
.end
|
||||||
|
.to_point(buffer)
|
||||||
|
.to_display_point(display_snapshot);
|
||||||
|
results.push((start..end, color))
|
||||||
|
}
|
||||||
|
|
||||||
|
results
|
||||||
|
}
|
||||||
|
|
||||||
pub fn highlight_text<T: 'static>(
|
pub fn highlight_text<T: 'static>(
|
||||||
&mut self,
|
&mut self,
|
||||||
|
@ -1086,11 +1086,13 @@ impl EditorElement {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
for (row, _) in &editor.background_highlights_in_range(
|
for (row, _) in &editor
|
||||||
|
.background_highlights_in_range_for::<crate::items::BufferSearchHighlights>(
|
||||||
start_anchor..end_anchor,
|
start_anchor..end_anchor,
|
||||||
&layout.position_map.snapshot,
|
&layout.position_map.snapshot,
|
||||||
&theme,
|
&theme,
|
||||||
) {
|
)
|
||||||
|
{
|
||||||
let start_display = row.start;
|
let start_display = row.start;
|
||||||
let end_display = row.end;
|
let end_display = row.end;
|
||||||
|
|
||||||
|
@ -883,7 +883,7 @@ impl ProjectItem for Editor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum BufferSearchHighlights {}
|
pub(crate) enum BufferSearchHighlights {}
|
||||||
impl SearchableItem for Editor {
|
impl SearchableItem for Editor {
|
||||||
type Match = Range<Anchor>;
|
type Match = Range<Anchor>;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user