-
Notifications
You must be signed in to change notification settings - Fork 0
renderers
2CHEVSKII edited this page Jul 10, 2026
·
1 revision
The standard PowerShell table view is implemented with format data and keeps PowerShell's familiar layout. Additional interactive layouts are implemented as commands.
Show-Gly returns display records for file system objects.
Show-Gly -Path .
Show-Gly -LiteralPath '.\file with spaces.txt'
Get-ChildItem . | Show-GlyAlias:
gly .Show-Gly applies the active theme, active glyph set, selected style renderer, and renderer-only size/date formatting options.
Show-GlyTree prints a simple tree layout.
Show-GlyTree -Path . -Depth 2
Get-Item . | Show-GlyTree -Depth 1Alias:
glytr . -Depth 2The command controls directory traversal itself. It is not a full replacement for GNU tree.
Show-GlyGrid prints items in columns.
Show-GlyGrid -Path .
Get-ChildItem . | Show-GlyGridAlias:
glygr .Grid width is calculated from visible text length after ANSI escape sequences are removed.