feature: add feature to increase/decrease size (#1048)

This commit is contained in:
Andreas Bissinger
2022-03-06 11:33:28 +01:00
committed by GitHub
parent ceadf83809
commit 7cb689795e
4 changed files with 30 additions and 3 deletions

View File

@@ -61,7 +61,11 @@ Print clipboard content for both cut and copy
|:NvimTreeResize| *:NvimTreeResize*
Resize the NvimTree window to the given size. Example: `:NvimTreeResize 50`
resizes the window to the width of 50.
resizes the window to the width of 50. If the size starts with "+" or "-" it
adds or removes the given value to the current window width.
Example `:NvimTreeResize -20` removes the value 20 from the current width. And
`:NvimTreeResize +20` adds the value 20 to the current width.
==============================================================================
SETUP *nvim-tree.setup*