fix: tree show hints, cheatsheet
This commit is contained in:
parent
ad93bbc748
commit
3f444e3892
2 changed files with 89 additions and 0 deletions
|
|
@ -27,6 +27,18 @@ return {
|
|||
},
|
||||
},
|
||||
|
||||
-- Global window mappings (apply to all Neo-tree windows)
|
||||
window = {
|
||||
mappings = {
|
||||
-- Disable <Space> for toggle_node to allow <leader> (Space) to work
|
||||
['<space>'] = 'none',
|
||||
-- Use <CR> (Enter) to toggle nodes instead (already default, but making it explicit)
|
||||
['<cr>'] = 'toggle_node',
|
||||
-- Use 'za' (vim fold toggle) as alternative for toggle node
|
||||
['za'] = 'toggle_node',
|
||||
},
|
||||
},
|
||||
|
||||
filesystem = {
|
||||
-- Follow the current file in the tree
|
||||
follow_current_file = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue