-
When working in java projects you often end up with empty folders. Is there an option to automatically open all sub folders if the folder is empty? Basically if I have a structure of:
If I open Folder 1 it should automatically open down to folder 4 to expose main.file as folder 4 is the first non-empty folder (has more than 1 subfolder as a child) This is nicely handled in vscode and I would like to have the same functionality in neo-tree. I am already using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Yes it is https://github.com/nvim-neo-tree/neo-tree.nvim/blob/main/lua/neo-tree/defaults.lua |
Beta Was this translation helpful? Give feedback.
-
Thanks. This is the solution I was after. |
Beta Was this translation helpful? Give feedback.
Yes it is
filesystem.scan_mode = "deep"
. Please readdefaults.lua
for better explanation as I'm on my phone right now.https://github.com/nvim-neo-tree/neo-tree.nvim/blob/main/lua/neo-tree/defaults.lua