我试图通过放入我的 user.behaviors 部分来覆盖它(:lt.objs.editor/tab-settings false 2 2)
,editor
但它并没有改变任何东西。每次我在我的 html 文件的 example 标记中按 enter <head>
,我都会缩进 4 个空格。我已经在谷歌上搜索了大约半个小时。你知道我做错了什么吗?
我在 OS X 版本上。这是我的整个 user.behaviors:
{:+ {
;; The app tag is kind of like global scope. You assign behaviors that affect
;; all of Light Table here
:app [(:lt.objs.style/set-skin "dark")]
;; The editor tag is applied to all editors
:editor [:lt.objs.editor/no-wrap
(:lt.objs.style/set-theme "default")
(:lt.plugins.vim/activate-vim)
(:lt.objs.editor/tab-settings false 2 2)]
;; Here we can add behaviors to just clojure editors
:editor.clojure [(:lt.plugins.clojure/print-length 1000)]}
;; You can use the subtract key to remove behavior that may get added by
;; another diff
:- {:app []}}