mirror of
https://github.com/voideditor/void
synced 2026-05-24 01:48:25 +00:00
log
This commit is contained in:
parent
f48889627a
commit
4055dc7775
1 changed files with 3 additions and 0 deletions
|
|
@ -210,6 +210,9 @@ const renderChildren = (
|
|||
const child = children[i];
|
||||
const isLast = i === children.length - 1;
|
||||
|
||||
console.log('child!!!!', child.uri.fsPath)
|
||||
|
||||
|
||||
// Create the tree branch symbols
|
||||
const branchSymbol = isLast ? '└── ' : '├── ';
|
||||
const childLine = `${parentPrefix}${branchSymbol}${child.name}${child.isDirectory ? '/' : ''}${child.isSymbolicLink ? ' (symbolic link)' : ''}\n`;
|
||||
|
|
|
|||
Loading…
Reference in a new issue