关闭Light Table中的自动完成功能

时间:2016-01-19 18:07:54

标签: clojure lighttable

如何关闭Light Table中的自动完成功能?

可能user.behaviors看起来如此

[
 [:app :lt.objs.style/set-skin "dark"]
;; Automagically closes parentheses
 [:app :lt.objs.settings/pair-keymap-diffs]

 [:editor :lt.objs.editor/wrap]
 [:editor :lt.objs.editor/line-numbers]
 [:editor :lt.objs.style/font-settings "Menlo" "9" "1.2"]
 [:editor :lt.objs.style/set-theme "monokai"]

 [:editor.clojure :lt.objs.langs.clj/print-length 1000]
 ;; Turn off autocomplete
 [:editor :lt.plugins.auto-complete/auto-show-on-input]
]

我尝试添加[:editor :lt.plugins.auto-complete/auto-show-on-input],但它无效。

3 个答案:

答案 0 :(得分:4)

要转换文字提示,请使用:

[:editor :-lt.plugins.auto-complete/textual-hints]

如果您想关闭文字提示,只需说javascript即可

[:editor.javascript :-lt.plugins.auto-complete/textual-hints]

如果你想一起关闭自动完成功能:

[:editor :-lt.plugins.auto-complete/show-hint]

答案 1 :(得分:2)

这是你需要做的:

 [:editor :-lt.plugins.auto-complete/auto-show-on-input]

答案 2 :(得分:0)

尝试添加此内容:

:- {:editor [:lt.plugins.auto-complete/auto-show-on-input]}

您要做的是从文件中的差异中减去它。有关详细信息和示例行为文件摘要,请参阅此post

相关问题