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
{{ message }}
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
I think that deoplete-rust should attempt to find the racer binary and rust source path if the user doesn't specify.
I used the something similar to the following in my vimrc to do that:
ifexecutable('racer')
letg:deoplete#sources#rust#racer_binary =systemlist('which racer')[0]
endififexecutable('rustc')
" if src installed via rustup, we can get it by running " rustc --print sysroot then appending the rest of the pathlet rustc_root =systemlist('rustc --print sysroot')[0]
let rustc_src_dir = rustc_root . '/lib/rustlib/src/rust/src'ifisdirectory(rustc_src_dir)
letg:deoplete#sources#rust#rust_source_path = rustc_src_dir
endifendif
I'm not sure if this project is actively maintained (last commit July 18?)
I could try to make a PR if you wish
The text was updated successfully, but these errors were encountered:
I think that deoplete-rust should attempt to find the racer binary and rust source path if the user doesn't specify.
I used the something similar to the following in my vimrc to do that:
I'm not sure if this project is actively maintained (last commit July 18?)
I could try to make a PR if you wish
The text was updated successfully, but these errors were encountered: