Feat/add advanced navigation (#257)
This commit is contained in:
@@ -71,9 +71,14 @@ local keypress_funcs = {
|
||||
cut = fs.cut,
|
||||
paste = fs.paste,
|
||||
close_node = lib.close_node,
|
||||
parent_node = lib.parent_node,
|
||||
toggle_ignored = lib.toggle_ignored,
|
||||
toggle_dotfiles = lib.toggle_dotfiles,
|
||||
refresh = lib.refresh_tree,
|
||||
first_sibling = function(node) lib.sibling(node, -math.huge) end,
|
||||
last_sibling = function(node) lib.sibling(node, math.huge) end,
|
||||
prev_sibling = function(node) lib.sibling(node, -1) end,
|
||||
next_sibling = function(node) lib.sibling(node, 1) end,
|
||||
prev_git_item = gen_go_to('prev_git_item'),
|
||||
next_git_item = gen_go_to('next_git_item'),
|
||||
dir_up = lib.dir_up,
|
||||
|
||||
Reference in New Issue
Block a user