mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
vim: Reset search options whenever /
is used (#19058)
This is a bit of a personal thing, but it's been bugging me for a while now that the search options are sticky whenever I use `/` in Vim mode. This change makes it so that the options are reset with each new `/`. That means you can, for example, use `v` to create a visual selection, then hit `*` to search for that (which activates a bunch of search options), but then continue with `/` to get a normal search. Release Notes: - Changed `/` in Vim mode to always reset the search options in the search bar back to regex-only. That means using `*` (in normal or visual mode) still works with its options, but the next `/` will reset the search options. That makes it much closer to how `/` behaves in Vim.
This commit is contained in:
parent
e962839d13
commit
36b9e40085
@ -129,14 +129,13 @@ impl Vim {
|
|||||||
search_bar.select_query(cx);
|
search_bar.select_query(cx);
|
||||||
cx.focus_self();
|
cx.focus_self();
|
||||||
|
|
||||||
if query.is_empty() {
|
|
||||||
search_bar.set_replacement(None, cx);
|
search_bar.set_replacement(None, cx);
|
||||||
search_bar.set_search_options(SearchOptions::REGEX, cx);
|
search_bar.set_search_options(SearchOptions::NONE | SearchOptions::REGEX, cx);
|
||||||
}
|
|
||||||
self.search = SearchState {
|
self.search = SearchState {
|
||||||
direction,
|
direction,
|
||||||
count,
|
count,
|
||||||
initial_query: query.clone(),
|
initial_query: query,
|
||||||
prior_selections,
|
prior_selections,
|
||||||
prior_operator: self.operator_stack.last().cloned(),
|
prior_operator: self.operator_stack.last().cloned(),
|
||||||
prior_mode: self.mode,
|
prior_mode: self.mode,
|
||||||
|
Loading…
Reference in New Issue
Block a user