Skip to content

Instantly share code, notes, and snippets.

@bobvanderlinden
Created September 5, 2018 12:16
Show Gist options
  • Select an option

  • Save bobvanderlinden/bb5940eebcc796f414eba9ca9d03f0a9 to your computer and use it in GitHub Desktop.

Select an option

Save bobvanderlinden/bb5940eebcc796f414eba9ca9d03f0a9 to your computer and use it in GitHub Desktop.
Edit files in vscode
#!/usr/bin/env bash
if [[ "$TERM_PROGRAM" = "vscode" ]]
then
code --reuse-window --wait "$@"
else
code --new-window --wait "$@"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment