We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
std::include!
racer fails to lookup symbols which are made available by std::include!().
std::include!()
E.g.
main.rs
std::include!("common.inc-rs"); fn main() { crate::bar::foo() // ^ }
common.inc-rs
mod bar;
bar.rs
pub fn foo() {}
does not return a result
$ racer find-definition 4 17 main.rs END $
Position "4 17" is the foo in the function call.
foo
racer 2.1.28; built with 1.41.0-nightly (5c5b8afd8 2019-11-16)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
racer fails to lookup symbols which are made available by
std::include!()
.E.g.
main.rs
common.inc-rs
bar.rs
does not return a result
Position "4 17" is the
foo
in the function call.racer 2.1.28; built with 1.41.0-nightly (5c5b8afd8 2019-11-16)
The text was updated successfully, but these errors were encountered: