I\'m trying to set-up Sublime Text 3 on OS X Mavericks and getting levels of frustration.
I\'ve followed all of the usual suspects in regards to installation and se
If you want to run Sublime from the terminal, append the following to your ~/.bash_profile file (~/.zshrc in case you use zsh).
~/.bash_profile
~/.zshrc
zsh
subl () { open -n -b "com.sublimetext.3" --args $* ;}
Now, you can simply type subl . in any folder to start editing files in that folder.
subl .