Subl command not working - command not found

前端 未结 13 609
别那么骄傲
别那么骄傲 2021-01-30 05:11

I\'m having difficulty getting this set up. I fixed my .bash_profile, and created the symlink using the following command from the Sublime website:

         


        
13条回答
  •  终归单人心
    2021-01-30 05:44

    "Launch Sublime Text from the command line on OSX" worked for me. I use Sublime Text 3 and only had to copy and paste the commands below to the command-line. I did this at the root level

    $ cd ~
    
    • If you're using Sublime Text 3 copy then paste this to the command line:

      // Sublime Text 3
      $ ln -sv "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
      
    • If you're using Sublime Text 2 copy then paste this to the command line:

      // Sublime Text 2
      $ ln -sv "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
      

    Now test it out to see if it works:

    1. Open a new file from the command line:

      $  subl test.rb  // it should open new file test.rb in Sublime Text
      
    2. Open a project folder:

      $ subl dir/myProject // opens a new folder inside Sublime
      
    3. Launch Sublime app:

      $ subl // launches Sublime
      

    To open Sublime Help for more detailed options use:

    $ subl -h // Sublime help
    

提交回复
热议问题