conf2/zsh/.oh-my-zsh/plugins/vscode/vscode.plugin.zsh

31 lines
826 B
Bash
Raw Normal View History

2019-01-12 15:47:23 +00:00
# VScode zsh plugin
2020-02-02 15:08:42 +00:00
# Authors:
# https://github.com/MarsiBarsi (original author)
# https://github.com/babakks
2019-01-12 15:47:23 +00:00
2020-02-02 15:08:42 +00:00
# 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
2019-01-12 15:47:23 +00:00
2020-02-02 15:08:42 +00:00
# Define aliases
2019-10-24 19:09:05 +00:00
alias vsc="$VSCODE ."
alias vsca="$VSCODE --add"
alias vscd="$VSCODE --diff"
alias vscg="$VSCODE --goto"
alias vscn="$VSCODE --new-window"
alias vscr="$VSCODE --reuse-window"
alias vscw="$VSCODE --wait"
alias vscu="$VSCODE --user-data-dir"
2019-01-12 15:47:23 +00:00
2019-10-24 19:09:05 +00:00
alias vsced="$VSCODE --extensions-dir"
alias vscie="$VSCODE --install-extension"
alias vscue="$VSCODE --uninstall-extension"
alias vscv="$VSCODE --verbose"
alias vscl="$VSCODE --log"
alias vscde="$VSCODE --disable-extensions"