如何将.hl文件与Light Table中的Clojure语法高亮相关联?

时间:2014-02-15 03:33:13

标签: clojure clojurescript lighttable hoplon

我希望使用Light Table突出显示Hoplon(http://hoplon.io/)代码。

1 个答案:

答案 0 :(得分:10)

您需要做的就是:

 :files [(:lt.objs.files/file-types [{:exts [:hl],
                                      :mime "text/x-clojure",
                                      :name "hl",
                                      :tags [:editor.clj :editor.clojure]}])]

user.behavior文件中。

来源:

https://groups.google.com/forum/#!topic/light-table-discussion/LjlYu6K1sWk

EDIT 5/1/15:Light Table行为文件的格式在某些时候发生了变化。上面的以下变化对我有用:

 [:files :lt.objs.files/file-types [{:exts [:hl],
                                      :mime "text/x-clojure"
                                      :name "hl"
                                      :tags [:editor.clj :editor.clojure]}]]