Fix incorrect behavior of find_char command and friends.

The non-extending variants of the commands weren't selecting from the range head.

Fixes #527.
This commit is contained in:
Nathan Vegdahl 2021-07-29 17:56:25 -07:00 committed by Ivan Tham
parent 3fda350494
commit e6e0d31be0

View File

@ -654,8 +654,13 @@ where
range.head
};
search_fn(text, ch, search_start_pos, count, inclusive)
.map_or(range, |pos| range.put_cursor(text, pos, extend))
search_fn(text, ch, search_start_pos, count, inclusive).map_or(range, |pos| {
if extend {
range.put_cursor(text, pos, true)
} else {
Range::point(range.cursor(text)).put_cursor(text, pos, true)
}
})
});
doc.set_selection(view.id, selection);
})