feat: add expand/shrink_selection and select_next/prev_sibling commands
This commit is contained in:
parent
6735d52090
commit
b0a1b80acb
4 changed files with 176 additions and 1 deletions
|
@ -142,6 +142,8 @@ fn map_press(self: *Self, keypress: input.Key, egc: input.Key, modifiers: input.
|
|||
'S' => self.cmd("filter", command.fmt(.{"sort"})),
|
||||
'V' => self.cmd("paste", .{}),
|
||||
'X' => self.cmd("open_command_palette", .{}),
|
||||
input.key.home => self.cmd("select_prev_sibling", .{}),
|
||||
input.key.end => self.cmd("select_next_sibling", .{}),
|
||||
input.key.left => self.cmd("jump_back", .{}),
|
||||
input.key.right => self.cmd("jump_forward", .{}),
|
||||
input.key.up => self.cmd("pull_up", .{}),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue