Fix pairs of almost-adjacent hunks toggling together (#24355)
Release Notes: - Fixed a bug where toggling a diff hunk that immediately precedes another hunk would act on both hunks
This commit is contained in:
parent
a42e040660
commit
d97adfc540
3 changed files with 56 additions and 17 deletions
|
@ -12237,11 +12237,19 @@ impl Editor {
|
||||||
cx: &mut Context<'_, Editor>,
|
cx: &mut Context<'_, Editor>,
|
||||||
) {
|
) {
|
||||||
self.buffer.update(cx, |buffer, cx| {
|
self.buffer.update(cx, |buffer, cx| {
|
||||||
if buffer.has_expanded_diff_hunks_in_ranges(&ranges, cx) {
|
let expand = !buffer.has_expanded_diff_hunks_in_ranges(&ranges, cx);
|
||||||
buffer.collapse_diff_hunks(ranges, cx)
|
buffer.expand_or_collapse_diff_hunks(ranges, expand, cx);
|
||||||
} else {
|
})
|
||||||
buffer.expand_diff_hunks(ranges, cx)
|
}
|
||||||
}
|
|
||||||
|
fn toggle_diff_hunks_in_ranges_narrow(
|
||||||
|
&mut self,
|
||||||
|
ranges: Vec<Range<Anchor>>,
|
||||||
|
cx: &mut Context<'_, Editor>,
|
||||||
|
) {
|
||||||
|
self.buffer.update(cx, |buffer, cx| {
|
||||||
|
let expand = !buffer.has_expanded_diff_hunks_in_ranges(&ranges, cx);
|
||||||
|
buffer.expand_or_collapse_diff_hunks_narrow(ranges, expand, cx);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -559,7 +559,7 @@ impl EditorElement {
|
||||||
let mut modifiers = event.modifiers;
|
let mut modifiers = event.modifiers;
|
||||||
|
|
||||||
if let Some(hovered_hunk) = hovered_hunk {
|
if let Some(hovered_hunk) = hovered_hunk {
|
||||||
editor.toggle_diff_hunks_in_ranges(vec![hovered_hunk], cx);
|
editor.toggle_diff_hunks_in_ranges_narrow(vec![hovered_hunk], cx);
|
||||||
cx.notify();
|
cx.notify();
|
||||||
return;
|
return;
|
||||||
} else if gutter_hitbox.is_hovered(window) {
|
} else if gutter_hitbox.is_hovered(window) {
|
||||||
|
|
|
@ -2376,24 +2376,17 @@ impl MultiBuffer {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
fn expand_or_collapse_diff_hunks(
|
fn expand_or_collapse_diff_hunks_internal(
|
||||||
&mut self,
|
&mut self,
|
||||||
ranges: Vec<Range<Anchor>>,
|
ranges: impl Iterator<Item = (Range<Point>, ExcerptId)>,
|
||||||
expand: bool,
|
expand: bool,
|
||||||
cx: &mut Context<Self>,
|
cx: &mut Context<Self>,
|
||||||
) {
|
) {
|
||||||
self.sync(cx);
|
self.sync(cx);
|
||||||
let mut snapshot = self.snapshot.borrow_mut();
|
let mut snapshot = self.snapshot.borrow_mut();
|
||||||
let mut excerpt_edits = Vec::new();
|
let mut excerpt_edits = Vec::new();
|
||||||
for range in ranges.iter() {
|
for (range, end_excerpt_id) in ranges {
|
||||||
let end_excerpt_id = range.end.excerpt_id;
|
for diff_hunk in snapshot.diff_hunks_in_range(range) {
|
||||||
let range = range.to_point(&snapshot);
|
|
||||||
let mut peek_end = range.end;
|
|
||||||
if range.end.row < snapshot.max_row().0 {
|
|
||||||
peek_end = Point::new(range.end.row + 1, 0);
|
|
||||||
};
|
|
||||||
|
|
||||||
for diff_hunk in snapshot.diff_hunks_in_range(range.start..peek_end) {
|
|
||||||
if diff_hunk.excerpt_id.cmp(&end_excerpt_id, &snapshot).is_gt() {
|
if diff_hunk.excerpt_id.cmp(&end_excerpt_id, &snapshot).is_gt() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -2428,6 +2421,44 @@ impl MultiBuffer {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn expand_or_collapse_diff_hunks_narrow(
|
||||||
|
&mut self,
|
||||||
|
ranges: Vec<Range<Anchor>>,
|
||||||
|
expand: bool,
|
||||||
|
cx: &mut Context<Self>,
|
||||||
|
) {
|
||||||
|
let snapshot = self.snapshot.borrow().clone();
|
||||||
|
self.expand_or_collapse_diff_hunks_internal(
|
||||||
|
ranges
|
||||||
|
.iter()
|
||||||
|
.map(move |range| (range.to_point(&snapshot), range.end.excerpt_id)),
|
||||||
|
expand,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn expand_or_collapse_diff_hunks(
|
||||||
|
&mut self,
|
||||||
|
ranges: Vec<Range<Anchor>>,
|
||||||
|
expand: bool,
|
||||||
|
cx: &mut Context<Self>,
|
||||||
|
) {
|
||||||
|
let snapshot = self.snapshot.borrow().clone();
|
||||||
|
self.expand_or_collapse_diff_hunks_internal(
|
||||||
|
ranges.iter().map(move |range| {
|
||||||
|
let end_excerpt_id = range.end.excerpt_id;
|
||||||
|
let range = range.to_point(&snapshot);
|
||||||
|
let mut peek_end = range.end;
|
||||||
|
if range.end.row < snapshot.max_row().0 {
|
||||||
|
peek_end = Point::new(range.end.row + 1, 0);
|
||||||
|
};
|
||||||
|
(range.start..peek_end, end_excerpt_id)
|
||||||
|
}),
|
||||||
|
expand,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
pub fn resize_excerpt(
|
pub fn resize_excerpt(
|
||||||
&mut self,
|
&mut self,
|
||||||
id: ExcerptId,
|
id: ExcerptId,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue