【效率工具】Windows 10 终端自动补全、智能提示

1. 安装PSReadLine 2.1.0

Install-Module PSReadLine -RequiredVersion 2.1.0

2. 检查是否存在配置文件

Test-path $profile

创建配置文件(不存在的话)

New-item –type file –force $profile

3. 编辑配置文件

notepad $profile

4. 运行该指令后退出终端

Set-ExecutionPolicy RemoteSigned

5. 配置文件加上上面配置

Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History

效果如下:

键盘右键可以补全代码

在这里插入图片描述

【效率工具】Windows 10 终端自动补全、智能提示_第1张图片

你可能感兴趣的:(powershell,windows)