From a48a13b1fdee1feb5149bc392b4b68211329ac47 Mon Sep 17 00:00:00 2001 From: lohhiiccc <96543753+lohhiiccc@users.noreply.github.com> Date: Thu, 2 Jul 2026 19:07:02 +0200 Subject: [PATCH] chore: swap default h/- keybinds (h=parent, -=back) --- src/core/Config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Config.py b/src/core/Config.py index 5282c06..e50578d 100644 --- a/src/core/Config.py +++ b/src/core/Config.py @@ -10,8 +10,8 @@ DEFAULT_KEYBINDS: dict[str, list[str]] = { "down": ["j", "KEY_DOWN"], "up": ["k", "KEY_UP"], "enter": ["l", "KEY_RIGHT", "\n", "KEY_ENTER"], - "back": ["h", "KEY_LEFT", "KEY_BACKSPACE", "\x7f", "\x08"], - "parent": ["-"], + "back": ["-", "KEY_LEFT", "KEY_BACKSPACE", "\x7f", "\x08"], + "parent": ["h"], "sort": ["i"], }