Sublime colorize :javascript block in haml

喜你入骨 提交于 2019-12-03 23:23:58

For me, sublime 3, comes installed with Rails package. This also provide "Ruby Haml". If you press ctrl + alt + p and type haml you will probably see two Set Syntax: Ruby Haml.

The best solution for me was also install ApplySyntax and in it's user settings add the following:

// Put your custom syntax rules here:
"syntaxes": [
    {
        "name": "Haml/Syntaxes/Ruby Haml",
        "extensions": ["haml"],
        "rules": [
            {"file_name": ".*\\.haml$"}
        ]
    }
]

https://sublime.wbond.net/packages/Haml (https://github.com/phuibonhoa/handcrafted-haml-textmate-bundle) (installed with Package Control) works for me.

Though it would be nice to use it as the default somehow...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!