From 306f1c683866637e03851e434db9c17c2e1f9ac7 Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Fri, 13 Dec 2024 15:41:43 +0100 Subject: [PATCH] zeta: Increase context lines to 32 (#21968) Release Notes: - N/A Co-authored-by: Antonio --- crates/zeta/src/zeta.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zeta/src/zeta.rs b/crates/zeta/src/zeta.rs index 9784653a53f5c4f0ccec1c520411fc0ec18a3425..80b13011d038da9ce97601a7f88b34933071f47c 100644 --- a/crates/zeta/src/zeta.rs +++ b/crates/zeta/src/zeta.rs @@ -798,7 +798,7 @@ fn prompt_for_excerpt( } fn excerpt_range_for_position(point: Point, snapshot: &BufferSnapshot) -> Range { - const CONTEXT_LINES: u32 = 16; + const CONTEXT_LINES: u32 = 32; let mut context_lines_before = CONTEXT_LINES; let mut context_lines_after = CONTEXT_LINES;