You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am playing around with deoplete-lsp and deoplete-jedi. I noticed that when I try to autocomplete from the python-module numpy both take a little bit of time to load because numpy is big, although jedi is a little bit faster. However, what I noticed is that when I try to load the same completions a second time deoplete-jedi is a lot faster, whereas deoplete-lsp takes approximately the same amount of time as the first time.
Is there some caching going on? If so does deoplete-jedi or jedi itself does the caching?
Type . after last numpy and wait for the completion to show up
Delete . and type . again to trigger completion again
It can be observed that deoplete-jedi takes less time to reload the same results the second time, whereas deoplete-lsp needs approximately the same amount of time.
The text was updated successfully, but these errors were encountered:
I am playing around with
deoplete-lsp
anddeoplete-jedi
. I noticed that when I try to autocomplete from the python-modulenumpy
both take a little bit of time to load because numpy is big, although jedi is a little bit faster. However, what I noticed is that when I try to load the same completions a second time deoplete-jedi is a lot faster, whereas deoplete-lsp takes approximately the same amount of time as the first time.Is there some caching going on? If so does deoplete-jedi or jedi itself does the caching?
I am using
nvim v0.5.0 1153ac903
Minimal vimrc - deoplete-lsp
Minimal vimrc - deoplete-jedi
Minimal python-file
Steps to reproduce
pip install numpy
.
after lastnumpy
and wait for the completion to show up.
and type.
again to trigger completion againIt can be observed that deoplete-jedi takes less time to reload the same results the second time, whereas deoplete-lsp needs approximately the same amount of time.
The text was updated successfully, but these errors were encountered: