You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are some examples of the output I get from invoking racer in a terminal:
~> racer find-definition 3 4 $HOME/code/myapp/src/main.rs
MATCH iron,1,0,/home/augustl/.cargo/registry/src/github.com-88ac128001ac3a9a/iron-0.2.6/src/lib.rs,Module,/home/augustl/.cargo/registry/src/github.com-88ac128001ac3a9a/iron-0.2.6/src/lib.rs
END
~> racer find-definition 3 14 $HOME/code/myapp/src/main.rs
MATCH prelude,124,8,/home/augustl/.cargo/registry/src/github.com-88ac128001ac3a9a/iron-0.2.6/src/lib.rs,Module,/home/augustl/.cargo/registry/src/github.com-88ac128001ac3a9a/iron-0.2.6/src/lib.rs
END
~> racer find-definition 3 21 $HOME/code/myapp/src/main.rs
END
In that last invocation, I expected it to find the definition of iron::prelude::Request, but no results are returned.
I noticed this when trying out Atom for rust development, and also trying Eclipse, and noticed that they both had the same issue.
This issue also applies to iron::prelude::Response and iron::prelude::Iron, the two subsequent "use" lines.
The text was updated successfully, but these errors were encountered:
I have the following Cargo.toml:
This is my src/main.rs
This is the value of RUST_SRC_PATH:
Here are some examples of the output I get from invoking racer in a terminal:
In that last invocation, I expected it to find the definition of
iron::prelude::Request
, but no results are returned.I noticed this when trying out Atom for rust development, and also trying Eclipse, and noticed that they both had the same issue.
This issue also applies to
iron::prelude::Response
andiron::prelude::Iron
, the two subsequent "use" lines.The text was updated successfully, but these errors were encountered: