diff options
Diffstat (limited to 'idatui')
| -rw-r--r-- | idatui/app.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/idatui/app.py b/idatui/app.py index 5898489..57ec7df 100644 --- a/idatui/app.py +++ b/idatui/app.py @@ -3150,12 +3150,7 @@ class IdaTui(App): Binding("ctrl+b", "toggle_functions", "Names", show=False), Binding("tab,shift+tab", "toggle_view", "Disasm/Pseudocode", priority=True), Binding("ctrl+s", "save", "Save"), - # Esc is IDA's muscle memory, but a bare \x1b is ambiguous in terminals: - # it's also the lead byte of every arrow/function-key sequence, so a - # terminal or tmux that merges it (see tmux escape-time) delivers the - # keypress as e.g. "right" and back silently doesn't happen. Backspace - # is unambiguous and always works. - Binding("escape,backspace", "back", "Back"), + Binding("escape", "back", "Back"), ] def __init__(self, open_path: str | None = None, keepalive: bool = True, |
