Feature: open file/folder with default system application (#539)

This commit is contained in:
xeluxee
2021-08-02 21:08:24 +02:00
committed by GitHub
parent c4d98bd7ab
commit 7bed04718e
4 changed files with 35 additions and 10 deletions

View File

@@ -343,6 +343,7 @@ INFORMATIONS *nvim-tree-info*
- type ']c' to go to next git item
- type '[c' to go to prev git item
- type '-' to navigate up one directory
- type 's' to open a file with default system application or a folder with default file manager
- type '<' to navigate to the previous sibling of current file/directory
- type '>' to navigate to the next sibling of current file/directory
- type 'J' to navigate to the first sibling of current file/directory
@@ -410,6 +411,7 @@ Default mappings:
{ key = "[c", cb = tree_cb("prev_git_item") },
{ key = "]c", cb = tree_cb("next_git_item") },
{ key = "-", cb = tree_cb("dir_up") },
{ key = "s", cb = tree_cb("system_open") },
{ key = "q", cb = tree_cb("close") },
{ key = "g?", cb = tree_cb("toggle_help") },
}