Created
August 3, 2022 17:11
-
-
Save ashutoshsahoo/5e94b6f507839e03292567ae507ef4a3 to your computer and use it in GitHub Desktop.
Windows Terminal command autocomplete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Import-Module posh-git | |
Import-Module oh-my-posh | |
Import-Module PSReadLine | |
Set-PoshPrompt -Theme gmay_ashu | |
New-Alias kc kubectl | |
# Shows navigable menu of all options when hitting Tab | |
Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete | |
# Autocompleteion for Arrow keys | |
Set-PSReadLineOption -HistorySearchCursorMovesToEnd | |
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward | |
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward | |
Set-PSReadLineOption -ShowToolTips | |
Set-PSReadLineOption -PredictionSource History |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment