Hello,
How should I go about troubleshooting rust-analyzer's documentation loading?
Some hints get stuck saying Loading...
, not randomly, they're always the same in a given file, eg: len() on a vec.
The crate compiles without errors.
There's nothing the in Client output except the usual DEBUG outs after "Using server binary"
On the server trace I'm getting:
[Trace - 4:45:52 PM] Sending request 'textDocument/hover - (33)'.
Params: {
"textDocument": {
"uri": "file:///...abc.rs"
},
"position": {
"line": xyz,
"character": xyz
}
}
[Trace - 4:45:53 PM] Sending notification '$/cancelRequest'.
Params: {
"id": 33
}
[Trace - 4:45:53 PM] Received response 'textDocument/hover - (33)' in 735ms. Request failed: canceled by client (-32800).
[Trace - 4:45:53 PM] Sending request 'textDocument/hover - (34)'.
[...]
I'm not moving my mouse.
Reloading the window doesn't help.
Best