默认将 Powershell Predictive Intellisense 设置为关闭

默认将 Powershell Predictive Intellisense 设置为关闭

我在 Windows 11 中使用 Powershell 7.3.3,默认情况下 Predictive Intellisense 功能处于启用状态,除非我每次使用时都手动将其关闭。有没有办法永久关闭(或重新打开)它,而不必每次都进行设置?

答案1

您可以关闭智能感知功能。

智能感知

启用预测 IntelliSense:

您可以使用 PSReadline 的选项 cmdlet 启用预测 IntelliSense 功能。

设置 PSReadlineOption -PredictionSource 历史记录

要禁用该功能,请将源重新设置为无。

设置 PSReadlineOption -PredictionSource 无

[设置前请以管理员身份启动 Powershell。以上内容适用于 Powershell 7。Powershell 6 在设置方面似乎有很大不同。]

相关内容