File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,8 @@ local list = {
263
263
{ key = " s" , cb = tree_cb (" system_open" ) },
264
264
{ key = " q" , cb = tree_cb (" close" ) },
265
265
{ key = " g?" , cb = tree_cb (" toggle_help" ) },
266
+ { key = ' m' , cb = " :lua require'nvim-tree.marks'.toggle_mark()<cr>" },
267
+ { key = ' M' , cb = " :lua require'nvim-tree.marks'.disable_all()<cr>" },
266
268
}
267
269
```
268
270
@@ -282,7 +284,7 @@ You can toggle the help UI by pressing `g?`.
282
284
- Git integration (icons and file highlight)
283
285
- Lsp diagnostics integration (signs)
284
286
- Indent markers
285
- - Marks (for bulk actions)
287
+ - Marks (for bulk actions, see ` :help nvim-tree.marks ` )
286
288
- Mouse support
287
289
- It's fast
288
290
Original file line number Diff line number Diff line change @@ -591,6 +591,8 @@ Defaults to:
591
591
{ key = "s", cb = tree_cb("system_open") },
592
592
{ key = "q", cb = tree_cb("close") },
593
593
{ key = "g?", cb = tree_cb("toggle_help") },
594
+ { key = 'm', cb = ":lua require'nvim-tree.marks'.toggle_mark()<cr>" },
595
+ { key = 'M', cb = ":lua require'nvim-tree.marks'.disable_all()<cr>" },
594
596
}
595
597
<
596
598
You can’t perform that action at this time.
0 commit comments