haven't tested yet, but found this: https://marketplace.visualstudio.com/items?itemName=Atishay-Jain.All-Autocomplete
Provides autocompletion in Visual Studio Code items based on all open editors.
i only just found: https://vscode.readthedocs.io/en/latest/getstarted/settings/#copy-of-default-settings this seems to be a helpful reference for what settings exist, what they mean, and what their values are.
@pez your hint about word characters seems to help a lot! before adding this:
(swap! disposables
conj (.setLanguageConfiguration (.. n.v -languages)
"clojure"
#js {:wordPattern #"[^\s,#()\[\]{};\"\\@\']+"})
the completion experience was not good at all.
thanks a lot for the tip!Nice!