diff options
| author | citrons <citrons@mondecitronne.com> | 2025-06-02 06:14:39 -0500 |
|---|---|---|
| committer | citrons <citrons@mondecitronne.com> | 2025-06-02 06:14:39 -0500 |
| commit | 33e59b1b318ea911d9a63cd78c6bc5eee0bb4109 (patch) | |
| tree | f5a68760d3108b3b6f42f3bc6e92e63ca91fc71a /client/ui.go | |
| parent | bd5aa344ee5c53e04d15d9fc615d5698b5dbcfea (diff) | |
interpret ^H as backspace
Diffstat (limited to 'client/ui.go')
| -rw-r--r-- | client/ui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/ui.go b/client/ui.go index de9a0fb..2fc71f6 100644 --- a/client/ui.go +++ b/client/ui.go @@ -40,7 +40,7 @@ func (a *application) onInput(ev tui.Event) { input.SetText("") } } - case 'h' | keys.Ctrl: + case '0' | keys.Alt: a.currentWindow = cmdWindowLocation {} } |
