如何在Powershell中更改单个语法的颜色?

时间:2018-08-30 19:09:17

标签: windows powershell

无论出于何种原因,在powershell中的以下命令中,

Set-PSReadlineOption -TokenKind Comment -ForegroundColor Gray

破折号后我什么都看不到。 enter image description here

我猜颜色有些问题,我正在尝试更改它。关键似乎是选择正确的TokenKind,该令牌已列出(但未记录在文档中)here

我要更改哪个TokenKind才能在破折号后看到文本?

1 个答案:

答案 0 :(得分:3)

通过实验找到了答案。将其发布给遇到此问题的下一个人。 TokenKindParameter

Set-PSReadlineOption -TokenKind Parameter -ForegroundColor Yellow