5

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

4

1 回答 1

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

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

 [:files :lt.objs.files/file-types [{:exts [:hl],
                                      :mime "text/x-clojure"
                                      :name "hl"
                                      :tags [:editor.clj :editor.clojure]}]]
于 2014-02-15T12:42:53.663 回答