-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deoplete: No suggestions for member fields/methods in Rust with ALE integration after typing a dot #2593
Comments
Do you receive completion data from any Deoplete completion source? |
@w0rp To be fair I'm not sure how to verify that. When I start typing variable names, I do get completions, and after typing a member field's or method's name after the dot, I also get completions. So I suspect the answer would be yes, but let me know if there is something I can run that gives you more data. |
I'll eventually try this myself and see if I can repeat the issue mentioned here. One thing you could try is updating ALE and making sure there aren't any other versions installed in |
I have a hunch that the code in #2601 might fix your issue. |
@w0rp That would be great, thanks for keeping me posted. |
@mandreyel I finally had the time to review and merge the pull request. Let me know if it fixes your issue. |
This seems to be a rls specific issue. That language server has been deprecated and sunset. With it rls no longer available nor working, can we suggest this ticket to be closed? |
Deoplete itself has been abandoned, as has |
(originally opened in deoplete repo and was redirected here)
Problems summary
No suggestions are offered for member fields/methods in Rust with ALE integration after typing a dot. Not sure if I misconfigured something or if it's a big.
Expected
When typing e.g.
some_variable.
I'd expect a list of suggestions for the public methods and/or fields the object has.Environment Information
deoplete version: latest
OS: Ubuntu 19.04
neovim/Vim
:version
output:Provide a minimal init.vim/vimrc with less than 50 lines (Required!)
Unfortunately the below didn't seem to work, as in my own vimrc basic completion works except for the member completion, but with the below not even that worked. Including anyway for completeness:
Reproduction
cargo new --bin deopleterepro
cd deopleterepro
src/main.rs
:vim src/* -u <vimrc path>
let e = ...
type:e.
and wait for completion. None are given.:ALEInfo
The text was updated successfully, but these errors were encountered: