Home

Awesome

asyncomplete-racer.vim

Provide Racer support for asyncomplete.vim.

Installation

rustup component add rust-src
cargo install racer
autocmd User asyncomplete_setup call asyncomplete#register_source(
    \ asyncomplete#sources#racer#get_source_options())

Configuration

This plugin can be further configured by passing a dictionary to asyncomplete#sources#racer#get_source_options() like this:

autocmd User asyncomplete_setup call asyncomplete#register_source(
    \ asyncomplete#sources#racer#get_source_options({
    \     'config': {
    \         'racer_path': ''
    \     }
    \ }))
OptionDefault ValueExplanation
config.racer_path'racer'Path to the racer binary. If racer cannot be found in PATH, you must specify this manually.

License

See LICENSE.