diff --git a/PowerShell/Microsoft.PowerShell_profile.ps1 b/PowerShell/Microsoft.PowerShell_profile.ps1 index 143545e..00a2d4b 100644 --- a/PowerShell/Microsoft.PowerShell_profile.ps1 +++ b/PowerShell/Microsoft.PowerShell_profile.ps1 @@ -8,11 +8,9 @@ Set-PSReadLineOption -EditMode Windows Set-PSReadLineOption -PredictionViewStyle ListView Set-PSReadLineOption -BellStyle None # 设置 Tab 键补全 -Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete +Set-PSReadlineKeyHandler -Chord Tab -Function MenuComplete # 设置 Ctrl+z 为撤销 Set-PSReadLineKeyHandler -Key "Ctrl+z" -Function Undo -# 设置 Ctrl+d 为菜单补全和 Intellisense -# Set-PSReadLineKeyHandler -Key "Ctrl+d" -Function MenuComplete # 设置向上键为后向搜索历史记录 Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward # 设置向下键为前向搜索历史纪录