Merge pull request #241 from genebean/fix_functions

Fix syntax of fuctions
This commit is contained in:
Gene Liverman 2022-10-14 16:16:16 -04:00 committed by GitHub
commit 4aa428c3c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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