-
-
Notifications
You must be signed in to change notification settings - Fork 81
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
'Decorations' empty #30
Comments
Thanks for your comment! This may happen if the target file is not part of a workspace created by Cargo. In your log, it refers to a single source file, so it cannot visualize properly, meaning it may not work. Additionally, if there are any syntax or type errors, the result will be the same. |
I'm having the same issue (with the v0.1.4 release). |
Various causes are possible, but the following are common:
|
It's the fn main() {
let s = string::from("s");
let mut r = &s;
if s == "a" {
let s2 = string::from("a");
r = &mut s2;
}
println!("{r}");
} Are there any other reasons? |
Hi,
I've tried setting up this plugin in neovim using lazy and the install script. As far as I can tell the setup/request works, however, the response to request never contains any
decorations
. Concretely, when I print theresult
variable in response handler it contains the following:regardless of which token I hover over.
This was with an "empty" rust project (create with
cargo new
)Is there any additional setup required?
Thanks you and best!
The text was updated successfully, but these errors were encountered: