This commit is contained in:
Andrew Pareles 2025-04-09 17:08:05 -07:00
parent f48889627a
commit 4055dc7775

View file

@ -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`;