From 7810d96d23d68dce197688c0d927c5f1556de990 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Fri, 21 Jun 2024 01:49:06 +0200 Subject: [PATCH] fix(home): remove duplicate open_help keybind hint --- src/tui/mode/input/home.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tui/mode/input/home.zig b/src/tui/mode/input/home.zig index 1a7fbb7..2ccdf00 100644 --- a/src/tui/mode/input/home.zig +++ b/src/tui/mode/input/home.zig @@ -137,8 +137,7 @@ const hints = tui.KeybindHints.initComptime(.{ .{ "jump_back", "A-left" }, .{ "jump_forward", "A-right" }, .{ "open_config", "c, F6" }, - .{ "open_help", "C-/, C-S-/" }, - .{ "open_help", "h, F1" }, + .{ "open_help", "h, F1, C-/, C-S-/" }, .{ "quit", "q, C-q, C-w" }, .{ "quit_without_saving", "C-S-q" }, .{ "restart", "C-S-r" },