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
Fixes#220 - Readme & demo need to show Show-ObjectTree (#221)
* Added more debug flags incluidng -UseSystemConsole
* Updated readme and demo
* removed unneeded stuff
* removed unneeded stuff
* More Readme.md tweaks
* Removed newlines in .psd1 file
* Fixed cause of extra newlines in .psd1 file
* Added newline at end of demo.cs'
* Arrow key docs
*[`Out-ConsoleGridview`](docs/Microsoft.PowerShell.ConsoleGuiTools/Out-ConsoleGridView.md) - Send objects to a grid view window for interactive filtering and sorting.
18
+
*[`Show-ObjectTree`](docs/Microsoft.PowerShell.ConsoleGuiTools/Show-ObjectTree.md) - Send objects to a tree view window for interactive filtering and sorting.
20
19
21
-

20
+
* Cross-platform - Works on any platform that supports PowerShell 7.2+.
21
+
* Interactive - Use the mouse and keyboard to interact with the grid or tree view.
22
+
* Filtering - Filter the data using the built-in filter box.
23
+
* Sorting - Sort the data by clicking on the column headers.
24
+
* Multiple Selection - Select multiple items and send them down the pipeline.
25
+
* Customizable - Customize the grid view window with the built-in parameters.
Copy file name to clipboardExpand all lines: demo.ps1
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,4 +14,7 @@ killp
14
14
killp note
15
15
# .Silent cls
16
16
# Example 4: Navigate PowerShell command history (Map this to F7 with https://github.com/gui-cs/F7History)
17
-
Get-History|Sort-Object-Descending -Property Id -Unique |Select-Object CommandLine -ExpandProperty CommandLine |Out-ConsoleGridView-OutputMode Single -Filter $line-Title "Command Line History"
17
+
Get-History|Sort-Object-Descending -Property Id -Unique |Select-Object CommandLine -ExpandProperty CommandLine |Out-ConsoleGridView-OutputMode Single -Filter $line-Title "Command Line History"
18
+
# .Silent cls
19
+
# Example 4: Use Show-ObjectTree to output processes to a tree view
0 commit comments