racer-rust / emacs-racer

Racer support for Emacs
399 stars 48 forks source link

racer completion not working when company-backends is specified #84

Closed bryteise closed 7 years ago

bryteise commented 7 years ago

18 that sets completion-at-point-functions to nil caused my setup to break. If I remove the (set (make-local-variable 'completion-at-point-functions) nil) line I'm working as normal again (I didn't know exactly how to validate if I am still broken for what #18 fixed though but my completions for C seem to work normally from my testing).

In my configuration I set company-backends to '((company-irony company-gtags)) which if I remove then racer works without modifying racer.el (but then my C gtags completion is broken).

bryteise commented 7 years ago

Ah this was because I (setq company backends '((company-irony company-gtags)) instead of using add-to-list. Closing.