how to install slim tm bundle in sublime2

后端 未结 4 1792
借酒劲吻你
借酒劲吻你 2021-02-20 07:18

I would like to install the slim textmate bundle to sublime2. I went to this link slim textmate bundle

I cloned it to the pristinepackage(as per the nettuts website) b

相关标签:
4条回答
  • 2021-02-20 07:26

    While it's tempting to install by copying directories, you should really use the Sublime Package Manager.

    Install instructions are super easy - just copy and paste.

    After installing you can:

    • browse other packages
    • install packages within Sublime
    • update packages easily

    One small hurdle to get over and Sublime becomes way more powerful.

    0 讨论(0)
  • 2021-02-20 07:28

    That worked for me also, however i had to add User/ like so

    cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/User/
    git clone git://github.com/fredwu/ruby-slim-tmbundle.git Ruby-Slim.tmbundle
    
    0 讨论(0)
  • 2021-02-20 07:37

    Try the following (it has worked for me):

    cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
    git clone https://github.com/slim-template/ruby-slim.tmbundle.git Ruby-Slim.tmbundle
    

    And then in Sublime Text 2, you should be able to find 'Ruby Slim' in the bottom right language selection. At worst, you may need to quit and restart Sublime.

    0 讨论(0)
  • 2021-02-20 07:37

    If you are using Mac OS with Sublime 3 you should use the Sublime 3 directory like this:

    $ cd ~/Library/Application Support/Sublime Text 3/Packages/User
    $ git clone git@github.com:slim-template/ruby-slim.tmbundle.git
    

    PS: I tried to install syntax highlighting with the Sublime Package-Manager but it doesn´t work. Anyway, the two lines work for me. Maybe you should restart Sublime after cloning.

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