WIP simplify

This commit is contained in:
2026-01-29 09:38:41 +01:00
parent 8efafffaff
commit 73db616139
11 changed files with 434 additions and 291 deletions

View File

@@ -476,6 +476,9 @@ fn handle_modal_input(ctx: &mut InputContext, key: KeyEvent) -> InputResult {
KeyCode::Char('p') if ctrl => {
editor.search_prev();
}
KeyCode::Char('k') if ctrl => {
ctx.app.editor_ctx.show_stack = !ctx.app.editor_ctx.show_stack;
}
KeyCode::Char('a') if ctrl => {
editor.select_all();
}