无论出于何种原因,在powershell中的以下命令中,
Set-PSReadlineOption -TokenKind Comment -ForegroundColor Gray
我猜颜色有些问题,我正在尝试更改它。关键似乎是选择正确的TokenKind,该令牌已列出(但未记录在文档中)here。
我要更改哪个TokenKind
才能在破折号后看到文本?
答案 0 :(得分:3)
通过实验找到了答案。将其发布给遇到此问题的下一个人。 TokenKind
是Parameter
。
Set-PSReadlineOption -TokenKind Parameter -ForegroundColor Yellow