Windows 命令行历史记录补全
使用 powershell
安装PSReadLine 2.1.0
Install-Module PSReadLine -RequiredVersion 2.1.0
检查是否存在配置文件
Test-path $profile # 为 false 则执行命令创建
New-item –type file –force $profile
编辑配置文件
notepad $profile# 输入如下配置
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
运行该指令后退出终端
Set-ExecutionPolicy RemoteSigned