mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 13:21:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# VS Code (stable / insiders) / VSCodium / Cursor zsh plugin
 | 
						|
# Authors:
 | 
						|
#   https://github.com/MarsiBarsi (original author)
 | 
						|
#   https://github.com/babakks
 | 
						|
#   https://github.com/SteelShot
 | 
						|
#   https://github.com/AliSajid
 | 
						|
 | 
						|
# Verify if any manual user choice of VS Code exists first.
 | 
						|
if [[ -n "$VSCODE" ]] && ! which $VSCODE &>/dev/null; then
 | 
						|
  echo "'$VSCODE' flavour of VS Code not detected."
 | 
						|
  unset VSCODE
 | 
						|
fi
 | 
						|
 | 
						|
# Otherwise, try to detect a flavour of VS Code.
 | 
						|
if [[ -z "$VSCODE" ]]; then
 | 
						|
  if which code &>/dev/null; then
 | 
						|
    VSCODE=code
 | 
						|
  elif which code-insiders &>/dev/null; then
 | 
						|
    VSCODE=code-insiders
 | 
						|
  elif which codium &>/dev/null; then
 | 
						|
    VSCODE=codium
 | 
						|
  elif which cursor &>/dev/null; then
 | 
						|
    VSCODE=cursor
 | 
						|
  else
 | 
						|
    return
 | 
						|
  fi
 | 
						|
fi
 | 
						|
 | 
						|
function vsc {
 | 
						|
  if (( $# )); then
 | 
						|
    $VSCODE $@
 | 
						|
  else
 | 
						|
    $VSCODE .
 | 
						|
  fi
 | 
						|
}
 | 
						|
 | 
						|
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"
 | 
						|
alias vscp="$VSCODE --profile"
 | 
						|
 | 
						|
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"
 |