You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose the following file tree with two files: test/foo/bar, test/baz. Treemacs display it like this:
test/
foo/
bar
baz
Then add a dir $ mkdir test/foz, we would expect:
test/
foo/
bar
foz/
baz
But actually got:
test/
foo/
foz/
bar
baz
I'm using treemacs from melpa with version 20240613.2014.
In treemacs--determine-insert-position, when the new node is added after last dir, position of new node is calculated as after position of the last dir, but not its descendants.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity (this bot only works as a reminder, it will not close issues).
Suppose the following file tree with two files:
test/foo/bar, test/baz
. Treemacs display it like this:Then add a dir
$ mkdir test/foz
, we would expect:But actually got:
I'm using treemacs from melpa with version
20240613.2014
.In
treemacs--determine-insert-position
, when the new node is added after last dir, position of new node is calculated as after position of the last dir, but not its descendants.The text was updated successfully, but these errors were encountered: