Artifact [94840d2260]
Artifact 94840d22603e6a41044a6c3ce6544f53e356c086:
- File tools/plugins/config_gridview.ps1 — part of check-in [923dac04a6] at 2017-09-22 23:53:08 on branch trunk — Incomplete; there should have been a Out-GridView hook/alias. But this is basically just a config option for now. (user: mario size: 516)
# api: multitool # version: 0.0 # title: set GridView # description: Default table output Out-GridView # type: inline # category: config # hidden: 1 # key: gv|gridview # config: - # # # not yet enabled # ยท depends on implementation in CLI version #Set-Alias Out Out-GridView #Set-Alias Out Format-Table #-- just use config variable for now if ($global:cfg.gridview -match ".*Table.*") { $global:cfg.gridview = "Out-GridView" } else { $global:cfg.gridview = "Format-Table" }