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:
Nathan Sobo 2022-02-27 08:15:38 -07:00
parent dd6f8d20a3
commit ec317159d7
9 changed files with 197 additions and 197 deletions

View 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,
}