Rename "find" to "search"
Search is both a verb and a noun, which makes it more natural to use in situations where we need to name a thing rather than a process.
This commit is contained in:
parent
dd6f8d20a3
commit
ec317159d7
9 changed files with 197 additions and 197 deletions
16
crates/search/src/search.rs
Normal file
16
crates/search/src/search.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
use gpui::MutableAppContext;
|
||||
|
||||
mod buffer_search;
|
||||
mod project_search;
|
||||
|
||||
pub fn init(cx: &mut MutableAppContext) {
|
||||
buffer_search::init(cx);
|
||||
project_search::init(cx);
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
pub enum SearchOption {
|
||||
WholeWord,
|
||||
CaseSensitive,
|
||||
Regex,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue