Can I make powershell tab complete show me all options, rather than picking a specific one? Can I make powershell tab complete show me all options, rather than picking a specific one? powershell powershell

Can I make powershell tab complete show me all options, rather than picking a specific one?


PSReadLine has a feature like this called MenuComplete. Instead of Tab, press Ctrl+space:

EmacsModeTabCompletionWithPSReadLine

You can bind the MenuComplete function to tab with Set-PSReadLineKeyHandler:

Set-PSReadlineKeyHandler -Chord Tab -Function MenuComplete