Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions assets/settings/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,8 @@
"regex": false,
// Whether to center the cursor on each search match when navigating.
"center_on_match": false,
// Whether to search on input.
"search_on_input": true,
},
// When to populate a new search's query based on the text under the cursor.
// This setting can take the following three values:
Expand Down
3 changes: 3 additions & 0 deletions crates/editor/src/editor_settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ pub struct SearchSettings {
pub regex: bool,
/// Whether to center the cursor on each search match when navigating.
pub center_on_match: bool,
/// Whether to search on input.
pub search_on_input: bool,
}

impl EditorSettings {
Expand Down Expand Up @@ -271,6 +273,7 @@ impl Settings for EditorSettings {
include_ignored: search.include_ignored.unwrap(),
regex: search.regex.unwrap(),
center_on_match: search.center_on_match.unwrap(),
search_on_input: search.search_on_input.unwrap(),
},
auto_signature_help: editor.auto_signature_help.unwrap(),
show_signature_help_after_edits: editor.show_signature_help_after_edits.unwrap(),
Expand Down
85 changes: 85 additions & 0 deletions crates/search/src/buffer_search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3421,6 +3421,7 @@ mod tests {
include_ignored: false,
regex: false,
center_on_match: false,
search_on_input: false,
},
cx,
);
Expand Down Expand Up @@ -3484,6 +3485,7 @@ mod tests {
include_ignored: false,
regex: false,
center_on_match: false,
search_on_input: false,
},
cx,
);
Expand Down Expand Up @@ -3522,6 +3524,7 @@ mod tests {
include_ignored: false,
regex: false,
center_on_match: false,
search_on_input: false,
},
cx,
);
Expand Down Expand Up @@ -3604,9 +3607,91 @@ mod tests {
include_ignored: Some(search_settings.include_ignored),
regex: Some(search_settings.regex),
center_on_match: Some(search_settings.center_on_match),
search_on_input: Some(search_settings.search_on_input),
});
});
});
});
}
#[gpui::test]
async fn test_search_on_input_setting(cx: &mut TestAppContext) {
let (editor, search_bar, cx) = init_test(cx);

update_search_settings(
SearchSettings {
button: true,
whole_word: false,
case_sensitive: false,
include_ignored: false,
regex: false,
center_on_match: false,
search_on_input: false,
},
cx,
);

search_bar.update_in(cx, |search_bar, window, cx| {
search_bar.show(window, cx);
search_bar.query_editor.update(cx, |query_editor, cx| {
query_editor.buffer().update(cx, |buffer, cx| {
buffer.edit(
[(MultiBufferOffset(0)..MultiBufferOffset(0), "expression")],
None,
cx,
);
});
});
});

cx.background_executor.run_until_parked();

editor.update_in(cx, |editor, window, cx| {
let highlights = editor.all_text_background_highlights(window, cx);
assert!(
highlights.is_empty(),
"No highlights should appear when search_on_input is false"
);
});

update_search_settings(
SearchSettings {
button: true,
whole_word: false,
case_sensitive: false,
include_ignored: false,
regex: false,
center_on_match: false,
search_on_input: true,
},
cx,
);

search_bar.update_in(cx, |search_bar, window, cx| {
search_bar.dismiss(&Dismiss, window, cx);
search_bar.show(window, cx);
});

search_bar
.update_in(cx, |search_bar, window, cx| {
search_bar.search("expression", None, true, window, cx)
})
.await
.unwrap();

editor.update_in(cx, |editor, window, cx| {
let highlights = display_points_of(editor.all_text_background_highlights(window, cx));
assert_eq!(
highlights.len(),
2,
"Should find 2 matches for 'expression' when search_on_input is true"
);
assert_eq!(
highlights,
&[
DisplayPoint::new(DisplayRow(0), 10)..DisplayPoint::new(DisplayRow(0), 20),
DisplayPoint::new(DisplayRow(1), 9)..DisplayPoint::new(DisplayRow(1), 19),
]
);
});
}
}
63 changes: 49 additions & 14 deletions crates/search/src/project_search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -869,15 +869,32 @@ impl ProjectSearchView {
// Subscribe to query_editor in order to reraise editor events for workspace item activation purposes
subscriptions.push(
cx.subscribe(&query_editor, |this, _, event: &EditorEvent, cx| {
if let EditorEvent::Edited { .. } = event
&& EditorSettings::get_global(cx).use_smartcase_search
{
let query = this.search_query_text(cx);
if !query.is_empty()
&& this.search_options.contains(SearchOptions::CASE_SENSITIVE)
!= contains_uppercase(&query)
{
this.toggle_search_option(SearchOptions::CASE_SENSITIVE, cx);
if let EditorEvent::Edited { .. } = event {
if EditorSettings::get_global(cx).use_smartcase_search {
let query = this.search_query_text(cx);
if !query.is_empty()
&& this.search_options.contains(SearchOptions::CASE_SENSITIVE)
!= contains_uppercase(&query)
{
this.toggle_search_option(SearchOptions::CASE_SENSITIVE, cx);
}
}
// Trigger search on input:
if EditorSettings::get_global(cx).search.search_on_input {
let query = this.search_query_text(cx);
if query.is_empty() {
// Clear results immediately when query is empty and abort ongoing search
this.entity.update(cx, |model, cx| {
model.pending_search = None;
model.match_ranges.clear();
model.excerpts.update(cx, |excerpts, cx| excerpts.clear(cx));
model.no_results = None;
model.limit_reached = false;
cx.notify();
});
} else {
this.search(cx);
}
}
}
cx.emit(ViewEvent::EditorEvent(event.clone()))
Expand Down Expand Up @@ -1529,7 +1546,11 @@ impl ProjectSearchView {
editor.scroll(Point::default(), Some(Axis::Vertical), window, cx);
}
});
if is_new_search && self.query_editor.focus_handle(cx).is_focused(window) {
let should_auto_focus = !EditorSettings::get_global(cx).search.search_on_input;
if is_new_search
&& self.query_editor.focus_handle(cx).is_focused(window)
&& should_auto_focus
{
self.focus_results_editor(window, cx);
}
}
Expand Down Expand Up @@ -1592,9 +1613,13 @@ impl ProjectSearchView {
v_flex()
.gap_1()
.child(
Label::new("Hit enter to search. For more options:")
.color(Color::Muted)
.mb_2(),
Label::new(if EditorSettings::get_global(cx).search.search_on_input {
"Start typing to search. For more options:"
} else {
"Hit enter to search. For more options:"
})
.color(Color::Muted)
.mb_2(),
)
.child(
Button::new("filter-paths", "Include/exclude specific paths")
Expand Down Expand Up @@ -2537,7 +2562,8 @@ pub mod tests {
use project::FakeFs;
use serde_json::json;
use settings::{
InlayHintSettingsContent, SettingsStore, ThemeColorsContent, ThemeStyleContent,
InlayHintSettingsContent, SearchSettingsContent, SettingsStore, ThemeColorsContent,
ThemeStyleContent,
};
use util::{path, paths::PathStyle, rel_path::rel_path};
use util_macros::perf;
Expand Down Expand Up @@ -4756,6 +4782,15 @@ pub mod tests {
let settings = SettingsStore::test(cx);
cx.set_global(settings);

SettingsStore::update_global(cx, |store, cx| {
store.update_user_settings(cx, |settings| {
settings.editor.search = Some(SearchSettingsContent {
search_on_input: Some(false),
..Default::default()
});
});
});

theme::init(theme::LoadThemes::JustBase, cx);

editor::init(cx);
Expand Down
2 changes: 2 additions & 0 deletions crates/settings_content/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -828,6 +828,8 @@ pub struct SearchSettingsContent {
pub regex: Option<bool>,
/// Whether to center the cursor on each search match when navigating.
pub center_on_match: Option<bool>,
/// Whether to search on input.
pub search_on_input: Option<bool>,
}

#[with_fallible_options]
Expand Down
25 changes: 24 additions & 1 deletion crates/settings_ui/src/page_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2999,7 +2999,7 @@ fn languages_and_tools_page(cx: &App) -> SettingsPage {
}

fn search_and_files_page() -> SettingsPage {
fn search_section() -> [SettingsPageItem; 9] {
fn search_section() -> [SettingsPageItem; 10] {
[
SettingsPageItem::SectionHeader("Search"),
SettingsPageItem::SettingItem(SettingItem {
Expand Down Expand Up @@ -3133,6 +3133,29 @@ fn search_and_files_page() -> SettingsPage {
metadata: None,
files: USER,
}),
SettingsPageItem::SettingItem(SettingItem {
title: "Search on Input",
description: "Whether to search on input.",
field: Box::new(SettingField {
json_path: Some("editor.search.search_on_input"),
pick: |settings_content| {
settings_content
.editor
.search
.as_ref()
.and_then(|search| search.search_on_input.as_ref())
},
write: |settings_content, value| {
settings_content
.editor
.search
.get_or_insert_default()
.search_on_input = value;
},
}),
metadata: None,
files: USER,
}),
SettingsPageItem::SettingItem(SettingItem {
title: "Seed Search Query From Cursor",
description: "When to populate a new search's query based on the text under the cursor.",
Expand Down
12 changes: 6 additions & 6 deletions docs/src/reference/all-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -3270,6 +3270,12 @@ Non-negative `integer` values
- Setting: `regex`
- Default: `false`

### Search On Input

- Description: Whether to search on input.
- Setting: `search_on_input
- Default: `true`

### Center On Match

- Description: Whether to center the cursor on each search match when navigating.
Expand All @@ -3282,12 +3288,6 @@ Non-negative `integer` values
- Setting: `search_wrap`
- Default: `true`

## Center on Match

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that there was a duplicate here so I removed it.
And I'm not quite sure what is going here with the mixed ## ###

@katie-z-geer ?


- Description: If `center_on_match` is enabled, the editor will center the cursor on the current match when searching.
Comment thread
SomeoneToIgnore marked this conversation as resolved.
- Setting: `center_on_match`
- Default: `false`

## Seed Search Query From Cursor

- Description: When to populate a new search's query based on the text under the cursor.
Expand Down