mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 04:44:30 +00:00
Change cycle mode action to reflect new mode button order
This commit is contained in:
parent
3eee282a6b
commit
70bea75897
1 changed files with 9 additions and 9 deletions
|
@ -51,15 +51,15 @@ impl SearchMode {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn next_mode(mode: &SearchMode, semantic_enabled: bool) -> SearchMode {
|
pub(crate) fn next_mode(mode: &SearchMode, semantic_enabled: bool) -> SearchMode {
|
||||||
let next_text_state = if semantic_enabled {
|
|
||||||
SearchMode::Semantic
|
|
||||||
} else {
|
|
||||||
SearchMode::Regex
|
|
||||||
};
|
|
||||||
|
|
||||||
match mode {
|
match mode {
|
||||||
SearchMode::Text => next_text_state,
|
SearchMode::Text => SearchMode::Regex,
|
||||||
SearchMode::Semantic => SearchMode::Regex,
|
SearchMode::Regex => {
|
||||||
SearchMode::Regex => SearchMode::Text,
|
if semantic_enabled {
|
||||||
|
SearchMode::Semantic
|
||||||
|
} else {
|
||||||
|
SearchMode::Text
|
||||||
|
}
|
||||||
|
}
|
||||||
|
SearchMode::Semantic => SearchMode::Text,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue