Increase the context in other multibuffers (#10582)

This moves the diagnostics and find all references to be in line with
the search pane. This also centralizes the constant into the editor code
base.

Release Notes:

- Increased diagnostic context to match the project search context.
This commit is contained in:
Mikayla Maki 2024-04-15 14:44:14 -07:00 committed by GitHub
parent 7a112b22ac
commit 4d314b2dd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 36 additions and 15 deletions

View file

@ -54,8 +54,6 @@ struct ActiveSettings(HashMap<WeakModel<Project>, ProjectSearchSettings>);
impl Global for ActiveSettings {}
const SEARCH_CONTEXT: u32 = 2;
pub fn init(cx: &mut AppContext) {
cx.set_global(ActiveSettings::default());
cx.observe_new_views(|workspace: &mut Workspace, _cx| {
@ -234,7 +232,7 @@ impl ProjectSearch {
excerpts.stream_excerpts_with_context_lines(
buffer,
ranges,
SEARCH_CONTEXT,
editor::DEFAULT_MULTIBUFFER_CONTEXT,
cx,
)
})