We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's possible that is litee-specific issue.
Expected: if the current node is a leaf or a closed tree, I would like to collapse its parent (in the example, arctgx#grep#grep).
arctgx#grep#grep
Actual: nothing happens. To close I have to go to the parent node.
The text was updated successfully, but these errors were encountered:
This can be done, but in "litee.nvim". moving the issue there.
Sorry, something went wrong.
Currently, nodes do not keep a reference to their parent. If they did, this would become trivial.
Right now ever tree has a "depth_table", this is a table that looks like this:
{ 0 = { root } 1 = { child1, child2, child3 } 2 = {child4, child5, child6 } etc... }
An immediately solution would be to grab the depth_table from the tree to find the parent node.
No branches or pull requests
It's possible that is litee-specific issue.
Expected: if the current node is a leaf or a closed tree, I would like to collapse its parent (in the example,
arctgx#grep#grep
).Actual: nothing happens. To close I have to go to the parent node.
The text was updated successfully, but these errors were encountered: