Add functionality for 'select all'
This commit is contained in:
parent
5aaa57a6a2
commit
8534fa4988
2 changed files with 20 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue