-
Neovim version (nvim -v)v0.9.4 Operating system/versionArch Linux Output of :checkhealth rustaceanvim==============================================================================
rustaceanvim: require("rustaceanvim.health").check()
Checking for Lua dependencies ~
- WARNING dap not installed. Needed for debugging features [mfussenegger/nvim-dap](https://github.com/mfussenegger/nvim-dap)
Checking external dependencies ~
- OK rust-analyzer: found rust-analyzer 1 (21b06c1be 2023-12-15)
- OK Cargo: found cargo 1.65.0 (4bc8f24d3 2022-10-20)
- OK rustc: found rustc 1.65.0 (897e37553 2022-11-02)
Checking config ~
- OK No errors found in config.
Checking for conflicting plugins ~
- OK No conflicting plugins detected. How to reproduce the issueWhen open any rust file I did not see the autosuggestion. Here is the example: use
fn main() {
println!("Hello, world!");
} Also command like
This is the first time I install plugins like Expected behaviourThe plugin should work! Actual behaviourIt does not work! The minimal config used to reproduce this issue.As you can see in the healthcheck section: I have install |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Hey 👋 Moving up Q&A discussions, as this is highly unlikely to be a bug. |
Beta Was this translation helpful? Give feedback.
-
Auto completionsThis plugin doesn't add support for auto completions to Neovim. You have a few choices for that:
|
Beta Was this translation helpful? Give feedback.
-
Thank @mrcjkb for the detailed explaination, I have made it work by run |
Beta Was this translation helpful? Give feedback.
-
Ah finally i found this helpful discussion after a few hours search why i cannot get auto completion :(. Could you please also add note in |
Beta Was this translation helpful? Give feedback.
Auto completions
This plugin doesn't add support for auto completions to Neovim.
You have a few choices for that:
<C-X><C-O>
(ctrl+x, then ctrl+o) in insert mode, and using<C-N>
and<C-P>
to navigate.This supports basic LSP completions, but not autocompletion.
explainError
This is the expected behaviour.
explainError
looks for error diagnostics that have an error code.If there are none, it will tell you that there were
no explainable errors found
.