Check-in [923dac04a6]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Incomplete; there should have been a Out-GridView hook/alias. But this is basically just a config option for now. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
923dac04a6569460b2d342f7b7380d7a |
| User & Date: | mario 2017-09-22 23:53:08 |
Context
|
2017-09-23
| ||
| 00:34 | - check-in: 5a2ec5fc01 user: mario tags: trunk | |
|
2017-09-22
| ||
| 23:53 | Incomplete; there should have been a Out-GridView hook/alias. But this is basically just a config option for now. check-in: 923dac04a6 user: mario tags: trunk | |
| 23:45 | English plz check-in: 692d878111 user: mario tags: trunk | |
Changes
Added tools/plugins/config_gridview.ps1.
> > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# 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"
}
|