How do I turn off autocomplete in Light Table?
Might user.behaviors
looks as so
[
[: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]
]
I have tried adding [:editor :lt.plugins.auto-complete/auto-show-on-input]
but it is not working.
This is what you need to do:
[:editor :-lt.plugins.auto-complete/auto-show-on-input]