deoplete-tabnine
deoplete-tabnine copied to clipboard
Not fetching results properly from ls
Using TabNine::sem
with pyls
, suggestions from language server appear only after a couple of tries, as illustrated in the attached gif.
I even tried to force a higher timeout in TabNine.toml
, which appears to have done nothing.
synchronous_triggers = ["."]
synchronous_timeout_ms = 1000
This is not deoplete-tabnine's problem. It is tabnine's problem.
You should ask it in tabnine side. https://github.com/codota/TabNine/issues
And it seems tabnine's semantic completion feature. tabnine's semantic completion is option. If the completion is slow like pyls, it will be skipped.
Hm. I have tested it and it works for me. You need to wait the completion.
And please test the configuration.
[language.python]
command = "pyls"
install = [["pip", "install", "python-language-server"]]
synchronous_triggers = ["."]
synchronous_timeout_ms = 1000
Hm. I have tested it and it works for me. You need to wait the completion.
And please test the configuration.
[language.python] command = "pyls" install = [["pip", "install", "python-language-server"]] synchronous_triggers = ["."] synchronous_timeout_ms = 1000
Hey, No matter what I do, it doesn't work reliably. I guess I'll have to report it to tabnine directly then...