scripts/GuiCompletionConfig.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 27 28 29 |
New-Variable -Name GuiCompletionConfig -Option ReadOnly -Value ([PSCustomObject]@{ Colors = ([PSCustomObject]@{ TextColor = 'DarkMagenta' BackColor = 'White' SelectedTextColor = 'White' SelectedBackColor = 'DarkMagenta' BorderTextColor = 'DarkMagenta' BorderBackColor = 'White' BorderColor = 'DarkMagenta' FilterColor = 'DarkMagenta' }) DoubleBorder = $true MinimumTextWidth = 25 FastScrollItemCount = 10 AutoReturnSingle = $true ScrollDisplayDown = $true DotComplete = $true AutoExpandOnDot = $true BackSlashComplete = $true AutoExpandOnBackSlash = $true CustomComplete = $true CustomCompletionChars = ' ()[]:' }) |