Add functionality for 'select all'

This commit is contained in:
Ian Keane 2025-11-23 12:05:10 -05:00
parent 5aaa57a6a2
commit 8534fa4988
2 changed files with 20 additions and 1 deletions

View file

@ -563,6 +563,11 @@ fn render_log_view(frame: &mut Frame, app: &App) {
}
}
}
LogViewSelection::All => {
// Select everything
selected_line_start = 0;
selected_line_end = app.log_view_content.len().saturating_sub(1);
}
}
// Third pass: render with highlighting