File tree Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -356,7 +356,6 @@ Following is the default configuration. See |nvim-tree-opts| for details.
356
356
centralize_selection = false,
357
357
cursorline = true,
358
358
debounce_delay = 15,
359
- hide_root_folder = false,
360
359
side = "left",
361
360
preserve_window_proportions = false,
362
361
number = false,
@@ -707,11 +706,6 @@ Idle milliseconds before some reload / refresh operations.
707
706
Increase if you experience performance issues around screen refresh.
708
707
Type: `number ` , Default: `15 ` (ms)
709
708
710
- *nvim-tree.view.hide_root_folder*
711
- Deprecated: please set | nvim-tree.renderer.root_folder_label | to `false` .
712
- Hide the path of the current working directory on top of the tree.
713
- Type: `boolean ` , Default: `false`
714
-
715
709
*nvim-tree.view.side*
716
710
Side of the tree, can be `" left" ` , `" right" ` .
717
711
Type: `string ` , Default: `" left" `
Original file line number Diff line number Diff line change @@ -385,7 +385,6 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
385
385
centralize_selection = false ,
386
386
cursorline = true ,
387
387
debounce_delay = 15 ,
388
- hide_root_folder = false ,
389
388
side = " left" ,
390
389
preserve_window_proportions = false ,
391
390
number = false ,
Original file line number Diff line number Diff line change @@ -513,7 +513,7 @@ function M.setup(opts)
513
513
M .View .centralize_selection = options .centralize_selection
514
514
M .View .side = (options .side == " right" ) and " right" or " left"
515
515
M .View .height = options .height
516
- M .View .hide_root_folder = options . hide_root_folder or opts .renderer .root_folder_label == false
516
+ M .View .hide_root_folder = opts .renderer .root_folder_label == false
517
517
M .View .tab = opts .tab
518
518
M .View .preserve_window_proportions = options .preserve_window_proportions
519
519
M .View .winopts .cursorline = options .cursorline
You can’t perform that action at this time.
0 commit comments