Fix syntax of fuctions

This commit is contained in:
Gene Liverman 2022-10-14 16:09:59 -04:00
parent 4c80d4c12c
commit 53a7f767e1
No known key found for this signature in database
GPG key ID: 3AF83985B6C857C6

View file

@ -27,9 +27,9 @@ Set-PSReadLineKeyHandler -Key Ctrl+u -Function BackwardDeleteLine
Set-PSReadlineKeyHandler -Key Ctrl+d -Function DeleteCharOrExit Set-PSReadlineKeyHandler -Key Ctrl+d -Function DeleteCharOrExit
# Aliases and functions used to simulate Linux shell aliases # Aliases and functions used to simulate Linux shell aliases
Function gsw { & "git switch ${args}" } Function gsw { & "git" switch ${args} }
Function gswc { & "git switch -c ${args}" } Function gswc { & "git" switch -c ${args} }
Function hubpr { & "hub pull-request --browse --push ${args}" } Function hubpr { & "hub" pull-request --browse --push ${args} }
### SSH autocompletion ### SSH autocompletion