vscode: use insiders build if stable not found (#8568)

* 🔨 Add calling VS Code Insiders

* ✏️ Update README.md
This commit is contained in:
Babak K. Shandiz
2020-01-29 16:21:40 +03:30
committed by GitHub
parent 64a7f6b388
commit 7ff77120c1
2 changed files with 18 additions and 8 deletions

View File

@@ -1,9 +1,17 @@
# VScode zsh plugin
# author: https://github.com/MarsiBarsi
# Authors:
# https://github.com/MarsiBarsi (original author)
# https://github.com/babakks
# Use main Visual Studio Code version by default
: ${VSCODE:=code}
# Use the stable VS Code release, unless the Insiders version is the only
# available installation
if ! which code > /dev/null && which code-insiders > /dev/null; then
: ${VSCODE:=code-insiders}
else
: ${VSCODE:=code}
fi
# Define aliases
alias vsc="$VSCODE ."
alias vsca="$VSCODE --add"
alias vscd="$VSCODE --diff"