#author("2019-05-17T09:24:00+09:00","default:ryuichi","ryuichi")
#author("2019-05-17T09:24:32+09:00","default:ryuichi","ryuichi")
* コンソールの色設定 [#j16483bc]
** PSReadLine 2.0 [#vd1858f8]
Set-PSReadLineOption -Colors @{
"Parameter" = [ConsoleColor]::Cyan
"Operator" = [ConsoleColor]::Gray
}
** PSReadLine 1.0 [#wa8d4342]
Set-PSReadlineOption -TokenKind Command -ForegroundColor White
** 設定の確認 [#nc6c8ed8]
Get-PSReadlineOption
** 参考 [#hc3dd7df]
- https://github.com/PowerShell/PSReadLine/blob/master/docs/Set-PSReadLineOption.md
- https://4sysops.com/wiki/change-powershell-console-syntax-highlighting-colors-of-psreadline/