Replies: 1 comment
-
|
Unfortunately, keeping the state isolated between tabs was a core, very intentional design decision. There's no simple way to change that. If you want to try to hack something together, you could try to copy the local manager = require("neo-tree.sources.manager")
local prev_state = manager.get_state("filesystem", <prev_tabid>)
local next_state = manager.get_state("filesystem", <next_tabid>)
new_state.explicitly_opened_directories = prev_state.explicitly_opened_directories |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone, first I want to start with a thank you with the amazing job with the Neo-tree.
I just have a question. I found out, that every time that I issue the
:tabnewcommand, and then I open the neo-tree float, it always shows the directories close, even if I have had some directories open on some other tabs. Is there a way to keep this state from tab to tab so that it always keep the directories open from the last tab?Thanks in advance for the help
Beta Was this translation helpful? Give feedback.
All reactions