74 lines
1.8 KiB
Rust
74 lines
1.8 KiB
Rust
use bitflags::bitflags;
|
|
pub use buffer_search::BufferSearchBar;
|
|
use gpui::{actions, Action, AppContext};
|
|
pub use mode::SearchMode;
|
|
use project::search::SearchQuery;
|
|
pub use project_search::{ProjectSearchBar, ProjectSearchView};
|
|
|
|
pub mod buffer_search;
|
|
mod elements;
|
|
mod history;
|
|
mod mode;
|
|
pub mod project_search;
|
|
pub(crate) mod search_bar;
|
|
|
|
pub fn init(cx: &mut AppContext) {
|
|
buffer_search::init(cx);
|
|
project_search::init(cx);
|
|
}
|
|
|
|
actions!(
|
|
search,
|
|
[
|
|
CycleMode,
|
|
ToggleWholeWord,
|
|
ToggleCaseSensitive,
|
|
SelectNextMatch,
|
|
SelectPrevMatch,
|
|
SelectAllMatches,
|
|
NextHistoryQuery,
|
|
PreviousHistoryQuery,
|
|
ActivateTextMode,
|
|
ActivateSemanticMode,
|
|
ActivateRegexMode
|
|
]
|
|
);
|
|
|
|
bitflags! {
|
|
#[derive(Default)]
|
|
pub struct SearchOptions: u8 {
|
|
const NONE = 0b000;
|
|
const WHOLE_WORD = 0b001;
|
|
const CASE_SENSITIVE = 0b010;
|
|
}
|
|
}
|
|
|
|
impl SearchOptions {
|
|
pub fn label(&self) -> &'static str {
|
|
match *self {
|
|
SearchOptions::WHOLE_WORD => "Match Whole Word",
|
|
SearchOptions::CASE_SENSITIVE => "Match Case",
|
|
_ => panic!("{:?} is not a named SearchOption", self),
|
|
}
|
|
}
|
|
|
|
pub fn to_toggle_action(&self) -> Box<dyn Action> {
|
|
match *self {
|
|
SearchOptions::WHOLE_WORD => Box::new(ToggleWholeWord),
|
|
SearchOptions::CASE_SENSITIVE => Box::new(ToggleCaseSensitive),
|
|
_ => panic!("{:?} is not a named SearchOption", self),
|
|
}
|
|
}
|
|
|
|
pub fn none() -> SearchOptions {
|
|
SearchOptions::NONE
|
|
}
|
|
|
|
pub fn from_query(query: &SearchQuery) -> SearchOptions {
|
|
let mut options = SearchOptions::NONE;
|
|
options.set(SearchOptions::WHOLE_WORD, query.whole_word());
|
|
options.set(SearchOptions::CASE_SENSITIVE, query.case_sensitive());
|
|
options
|
|
}
|
|
}
|