diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index b731006a62990b5b9de75223ca38fbebb684c91c..f2d5fd5762b22c87c79751753925fd74368fb040 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -24432,5 +24432,5 @@ pub fn multibuffer_context_lines(cx: &App) -> u32 { EditorSettings::try_get(cx) .map(|settings| settings.excerpt_context_lines) .unwrap_or(2) - .clamp(1, 32) + .min(32) }