racer icon indicating copy to clipboard operation
racer copied to clipboard

Rust Code Completion utility

Results 102 racer issues
Sort by recently updated
recently updated
newest added

I have tried to install racer but I keep getting this error. I couldn't find it anywhere else. Info ---------------------------------------------- $ rustup show Default host: x86_64-unknown-linux-gnu rustup home: /home/thomas28/.rustup installed...

cc @Xanewok -- if we could also publish a new release, that would be great

Hey folks, I'm have install rust and rustup dev components alongside `racer`. I'm trying to use doom-emacs but I got this error and no code completion. I don't know what...

```bash $ cargo +nightly install racer Updating crates.io index Installing racer v2.1.48 Compiling libc v0.2.109 ... Compiling rustc-ap-rustc_data_structures v722.0.0 Compiling rustc-ap-rustc_arena v722.0.0 Compiling rustc-ap-rustc_span v722.0.0 error[E0635]: unknown feature `thread_local_const_init` -->...

I am getting the following error when running `cargo +nightly install racer`: ``` Compiling rustc-ap-rustc_data_structures v651.0.0 error[E0599]: no method named `get` found for type `u64` in the current scope -->...

In ```rust mod submod { mod lib { pub fn foo() {} } pub mod app { use crate::submod::lib as crate_lib; // broken use super::lib as mod_lib; // ok pub...

In ```rust pub mod lib { pub struct Foo; impl Foo { pub fn some_func() {} } } pub mod app { impl crate::lib::Foo { pub fn other_func() {} }...

Currently, racer completes private struct members and functions cross module.

enhancement

rls is unable to complete linter `allow` hints without a closing parenthesis and brace, but is able to complete them otherwise. i.e. this works: ```rust #[allow(̲̯ )] ``` but this...

% racer complete std::io::B Unable to find libstd under RUST_SRC_PATH. N.B. RUST_SRC_PATH variable needs to point to the src directory inside a rust checkout e.g. "/home/foouser/src/rust/src". Current value ""/nix/store/fjghknnd4x9zpgx6hxznaiw6c7y0jr2s-rust-1.47.0-2020-10-07-18bf6b4f0/lib/rustlib/src/rust/library/libstd"" I...