estin/simple-completion-language-server

Disable partial word completion

Closed this issue · 2 comments

If I have Migration in my buffer, I see gration autocompleted in my buffer, or if I have Changesets I see angeset while typing non related letters.
Is there a way to disable this behaviour? I would only like it to try to complete full words.

my config:

[language-server.scls]
command = "simple-completion-language-server"

[language-server.scls.config]
max_completion_items = 3      # set max completion results len for each group: words, snippets, unicode-input
snippets_first = false        # completions will return before snippets by default
feature_words = true          # enable completion by word
feature_snippets = true       # enable snippets
feature_unicode_input = true  # enable "unicode input"
feature_paths = true          # enable path completion

Hi! It was bug and now must be fixed

Thank you! Indeed works fine now.