powershell
讓 PowerShell 的可以用 tab 列出當下目錄選單並且選擇
1. 安裝 PSReadLine Install-Module PSReadLine -AllowPrerelease -Force 2. 編輯 Microsoft.PowerShell_profile.ps1 可以直接 Write-Host $PROFILE 取得位置,或者直接使用 vscode 開啟檔案: code $PROFILE 3. 引入 PSReadLine,並設定 tab 的 KeyHandler: Import-Module PSReadLine Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete 可以用的 Function Set-PSReadLineKeyHandler 可以設定的 function 可以使用 Get-PSReadLineKeyHa