Last active
March 29, 2024 00:28
-
-
Save jgentes/534714b3b1ad239a31bc220918429ae5 to your computer and use it in GitHub Desktop.
powershell 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 | |
Set-PSReadlineKeyHandler -Key Tab -Function Complete | |
Set-PSReadLineKeyHandler -Chord "Tab" -Function AcceptSuggestion | |
Set-PSReadLineKeyHandler -Chord "RightArrow" -Function ForwardWord |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment