feat(vscode): allow arguments to vsc alias (#11903)

Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
This commit is contained in:
Vyacheslav Scherbinin 2023-10-18 14:18:05 +07:00 committed by GitHub
commit d3112d67a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -23,7 +23,14 @@ if [[ -z "$VSCODE" ]]; then
fi
fi
alias vsc="$VSCODE ."
function vsc {
if (( $# )); then
$VSCODE $@
else
$VSCODE .
fi
}
alias vsca="$VSCODE --add"
alias vscd="$VSCODE --diff"
alias vscg="$VSCODE --goto"