diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index b731006a62..f2d5fd5762 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) }