Completion for the std library for Rust works fine. Problem is, non of my own defined functions show up. I do have universal ctags installed and have generated a project tags file.
struct A;
impl A { fn foo(){} }
fn main() {
let a: A = A{};
a. <---- no completion
std:: <---------- completion works fine
}
Completion for Rust works 100% with Clion's Rust plugin. Not sure if they're using some special language server but everything works. Maybe I'm doing something wrong?
Completion for the std library for Rust works fine. Problem is, non of my own defined functions show up. I do have universal ctags installed and have generated a project tags file.
Completion for Rust works 100% with Clion's Rust plugin. Not sure if they're using some special language server but everything works. Maybe I'm doing something wrong?