- Open Automator
- Create a new Service
- Add a
Run Shell Scriptaction - Set input to Service receives selected
files or foldersinany application - Set the script action to
/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl -n $@ - Set Pass input to
as arguments - Save as
Open in Sublime Text
Created
September 25, 2013 18:03
-
-
Save vincentmac/6703537 to your computer and use it in GitHub Desktop.
Sublime Text OSX Context Menu
For my environment, I needed to wrap $@ in quotes
/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl -n "$@"or else it opened up a bunch of nonsense when the path contained whitespace.
Thank you 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Requirement ->
/bin/bashOriginally tried
/usr/bin/zshbut that threw errors.