It would be very useful if "Go to Declaration" worked inside macro invocations.
For example, in the following macro invocation:
```rust
error_chain! {
foreign_links {
Json(serde_json::Error)
}
}
````
if you would be nice if "Go to Declaration" worked on serde_json::Error.
Eclipse CDT supports this for C/C++ macros. Their general implementation strategy is:
Yep, I'm going to try this approach. When will be free time =)
Yeah, this approach works great! I just made a prototype and it works as expected. I'll finish it right after #3015 landing.
Will be very soon. All preparations are done #3640
Most helpful comment
Yeah, this approach works great! I just made a prototype and it works as expected. I'll finish it right after #3015 landing.