Sublime Text 3 and Terminal prompt for OS X Mavericks?

前端 未结 7 1031
半阙折子戏
半阙折子戏 2020-12-22 23:18

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

相关标签:
7条回答
  • 2020-12-22 23:53

    If you want to run Sublime from the terminal, append the following to your ~/.bash_profile file (~/.zshrc in case you use 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.

    0 讨论(0)
提交回复
热议问题