mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Fix infinite loop in select all matches
This commit is contained in:
parent
c074bfd441
commit
03d4191685
@ -294,7 +294,7 @@
|
|||||||
"replace_newest": false
|
"replace_newest": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"cmd-shift-d": "editor::SelectNextAll",
|
"cmd-shift-d": "editor::SelectAllMatches",
|
||||||
"ctrl-cmd-d": [
|
"ctrl-cmd-d": [
|
||||||
"editor::SelectPrevious",
|
"editor::SelectPrevious",
|
||||||
{
|
{
|
||||||
|
@ -130,7 +130,7 @@ pub struct SelectPrevious {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Deserialize, PartialEq, Default)]
|
#[derive(Clone, Deserialize, PartialEq, Default)]
|
||||||
pub struct SelectNextAll {
|
pub struct SelectAllMatches {
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
pub replace_newest: bool,
|
pub replace_newest: bool,
|
||||||
}
|
}
|
||||||
@ -331,7 +331,7 @@ impl_actions!(
|
|||||||
[
|
[
|
||||||
SelectNext,
|
SelectNext,
|
||||||
SelectPrevious,
|
SelectPrevious,
|
||||||
SelectNextAll,
|
SelectAllMatches,
|
||||||
SelectToBeginningOfLine,
|
SelectToBeginningOfLine,
|
||||||
SelectToEndOfLine,
|
SelectToEndOfLine,
|
||||||
ToggleCodeActions,
|
ToggleCodeActions,
|
||||||
@ -732,13 +732,22 @@ struct AddSelectionsState {
|
|||||||
stack: Vec<usize>,
|
stack: Vec<usize>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone)]
|
||||||
struct SelectNextState {
|
struct SelectNextState {
|
||||||
query: AhoCorasick,
|
query: AhoCorasick,
|
||||||
wordwise: bool,
|
wordwise: bool,
|
||||||
done: bool,
|
done: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl std::fmt::Debug for SelectNextState {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
f.debug_struct(std::any::type_name::<Self>())
|
||||||
|
.field("wordwise", &self.wordwise)
|
||||||
|
.field("done", &self.done)
|
||||||
|
.finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct AutocloseRegion {
|
struct AutocloseRegion {
|
||||||
selection_id: usize,
|
selection_id: usize,
|
||||||
@ -5985,7 +5994,9 @@ impl Editor {
|
|||||||
.stream_find_iter(bytes_before_first_selection)
|
.stream_find_iter(bytes_before_first_selection)
|
||||||
.map(|result| (0, result)),
|
.map(|result| (0, result)),
|
||||||
);
|
);
|
||||||
|
|
||||||
for (start_offset, query_match) in query_matches {
|
for (start_offset, query_match) in query_matches {
|
||||||
|
(start_offset, &query_match);
|
||||||
let query_match = query_match.unwrap(); // can only fail due to I/O
|
let query_match = query_match.unwrap(); // can only fail due to I/O
|
||||||
let offset_range =
|
let offset_range =
|
||||||
start_offset + query_match.start()..start_offset + query_match.end();
|
start_offset + query_match.start()..start_offset + query_match.end();
|
||||||
@ -5996,8 +6007,14 @@ impl Editor {
|
|||||||
|| (!movement::is_inside_word(&display_map, display_range.start)
|
|| (!movement::is_inside_word(&display_map, display_range.start)
|
||||||
&& !movement::is_inside_word(&display_map, display_range.end))
|
&& !movement::is_inside_word(&display_map, display_range.end))
|
||||||
{
|
{
|
||||||
next_selected_range = Some(offset_range);
|
if selections
|
||||||
break;
|
.iter()
|
||||||
|
.find(|selection| selection.equals(&offset_range))
|
||||||
|
.is_none()
|
||||||
|
{
|
||||||
|
next_selected_range = Some(offset_range);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6046,7 +6063,7 @@ impl Editor {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn select_all_matches(&mut self, action: &SelectNextAll, cx: &mut ViewContext<Self>) {
|
pub fn select_all_matches(&mut self, action: &SelectAllMatches, cx: &mut ViewContext<Self>) {
|
||||||
self.push_to_selection_history();
|
self.push_to_selection_history();
|
||||||
let display_map = self.display_map.update(cx, |map, cx| map.snapshot(cx));
|
let display_map = self.display_map.update(cx, |map, cx| map.snapshot(cx));
|
||||||
|
|
||||||
|
@ -100,6 +100,10 @@ impl Selection<usize> {
|
|||||||
reversed: false,
|
reversed: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn equals(&self, offset_range: &Range<usize>) -> bool {
|
||||||
|
self.start == offset_range.start && self.end == offset_range.end
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Selection<Anchor> {
|
impl Selection<Anchor> {
|
||||||
|
Loading…
Reference in New Issue
Block a user