Skip to content

Instantly share code, notes, and snippets.

View ErvinLlojku's full-sized avatar

Ervin Llojku ErvinLlojku

View GitHub Profile
@ErvinLlojku
ErvinLlojku / Mac OS X: Open in Visual Studio Code
Created May 26, 2019 18:11 — forked from tonysneed/Mac OS X: Open in Visual Studio Code
Add a command to Finder services in Mac OSX to open a folder in VS Code
- Open Automator
- File -> New -> Service
- Change "Service Receives" to "files or folders" in "Finder"
- Add a "Run Shell Script" action
- Change "Pass input" to "as arguments"
- Paste the following in the shell script box: open -n -b "com.microsoft.VSCode" --args "$*"
- Save it as something like "Open in Visual Studio Code"