Florian Diebold
Florian Diebold
@frozenranger From your description, I can't really tell what the problem is. Can you open a new issue and provide a code example? I would not recommend using RLS and...
@darsto I can't see any way this change would affect autocompletion. This method isn't even anywhere in the call chain for completion, and is unrelated to actual macro expansion. Also,...
Uncreated files can have a path, that's not the problem. If you e.g. do `:e foo.rs` and add the `mod foo` declaration, things should work fine. The case of `examples/foo.rs`...
It's a very different problem for examples/bins and for modules. I think for examples and bins the main problem would be fitting it into the architecture, but if/once we have...
Hm, why do we turn ```rust let foo$0 = (1, 2, 3); let bar = foo.0; let _ = foo.into(); ``` into ```rust let (_0, _1, _2) = (1, 2,...
I think that'd still a better non-compiling result than `/*foo*/`. No need to be smart about it, IMO. (Also, we can put `(_0, _1, _2)` there, without the `&`; `(_0,...
Also, how big is the project you had open (including dependencies)?
I've always thought we need some kind of better API for this, yeah. `BoundType` seems a bit confusing to me, from the names I'd have expected them to work the...
I'm not sure adding the method to the trait is usually going to be what the user wants?