feat: add popup information (#1042)

This commit is contained in:
Andreas Bissinger
2022-03-03 21:13:10 +01:00
committed by GitHub
parent 4fedb93cec
commit 50a927f176
4 changed files with 72 additions and 2 deletions

View File

@@ -222,6 +222,7 @@ require'nvim-tree'.setup {
- `W` will collapse the whole tree
- `S` will prompt the user to enter a path and then expands the tree to match the path
- `.` will enter vim command mode with the file the cursor is on
- `C-k` will show file infos about the file under the cursor
### Settings
@@ -287,6 +288,7 @@ local list = {
{ key = "g?", action = "toggle_help" },
{ key = "W", action = "collapse_all" },
{ key = "S", action = "search_node" },
{ key = "<C-k>", action = "show_file_info" },
{ key = ".", action = "run_file_command" }
}
```