zeta: Increase context lines to 32 (#21968)

Release Notes:

- N/A

Co-authored-by: Antonio <antonio@zed.dev>
This commit is contained in:
Thorsten Ball
2024-12-13 15:41:43 +01:00
committed by GitHub
co-authored by Antonio
parent 2f722e63a1
commit 306f1c6838
+1 -1
View File
@@ -798,7 +798,7 @@ fn prompt_for_excerpt(
}
fn excerpt_range_for_position(point: Point, snapshot: &BufferSnapshot) -> Range<usize> {
const CONTEXT_LINES: u32 = 16;
const CONTEXT_LINES: u32 = 32;
let mut context_lines_before = CONTEXT_LINES;
let mut context_lines_after = CONTEXT_LINES;