refactor: remove duplicate C-S-i binding on home screen
This commit is contained in:
parent
32ab76b52d
commit
6ca9dad1e4
1 changed files with 1 additions and 2 deletions
|
@ -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" },
|
||||
|
|
Loading…
Add table
Reference in a new issue