diff --git a/src/tui/mode/input/home.zig b/src/tui/mode/input/home.zig index 8f6fa33..9b90c71 100644 --- a/src/tui/mode/input/home.zig +++ b/src/tui/mode/input/home.zig @@ -71,7 +71,6 @@ fn mapPress(self: *Self, keypress: u32, modifiers: u32) tp.result { 'R' => self.cmd("restart", .{}), 'F' => self.cmd("enter_find_in_files_mode", .{}), 'L' => self.cmd_async("toggle_panel"), - 'I' => self.cmd_async("toggle_inputview"), '/' => self.cmd("open_help", .{}), else => {}, }, @@ -149,7 +148,7 @@ const hints = tui.KeybindHints.initComptime(.{ .{ "restart", "C-S-r" }, .{ "theme_next", "F10" }, .{ "theme_prev", "F9" }, - .{ "toggle_inputview", "F12, A-i, C-S-i" }, + .{ "toggle_inputview", "F12, A-i" }, .{ "toggle_panel", "F11, C-j, A-l, C-S-l" }, .{ "goto_next_file_or_diagnostic", "A-n" }, .{ "goto_prev_file_or_diagnostic", "A-p" },