A Finder toolbar icon to open current selected file/folder with VS Code.
- Download the zip file
- Unzip to Applications folder (or any folder that you won't mistakenly delete the app)
- Right-click to open to pass the Mac security check
- if you cannot open, try this: (thanks @d0972058277 and @ksmarty)
cd Downloads/Open\ in\ VS\ Code.app/Contents/MacOS/ chmod +x droplet
- Hold
Option+CMD
and drag the application to toolbar - Mojave users: to disable the system warning "Allowing control will provide access to documents and data..." when using the app, add the application in preferences -> security and privacy -> privacy -> accessibility
- Enjoy
Open AppleScript Editor, copy the following source and export as Application.
(*
Open in VS Code
To use:
* Drag Open In VS Code to the toolbar of any finder
window to add it to the toolbar
*)
on run
tell application "Finder"
if selection is {} then
set finderSelection to folder of the front window as string
else
set finderSelection to selection as alias list
end if
end tell
subl(finderSelection)
end run
-- script was drag-and-dropped onto
on open (theList)
subl(theList)
end open
-- open in Visual Studio Code
on subl(listOfAliases)
tell application "Visual Studio Code"
activate
open listOfAliases
end tell
end subl
Please see this repo open-folder-with-sublime
Thanks for the following github users for feedback & suggestion:
For icons, you can find them here: