Fix references to old rust-analyzer binary

Closes #2588
This commit is contained in:
Henrik Lissner 2020-02-23 15:35:12 -05:00
parent bd833091c2
commit 80c827119d
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -17,8 +17,8 @@
(setq lsp-server rustic-lsp-server)) (setq lsp-server rustic-lsp-server))
(pcase lsp-server (pcase lsp-server
(`rust-analyzer (`rust-analyzer
(unless (executable-find "ra_lsp_server") (unless (executable-find "rust-analyzer")
(warn! "Couldn't find rust analyzer (ra_lsp_server)"))) (warn! "Couldn't find rust analyzer (rust-analyzer)")))
(`rls (`rls
(unless (executable-find "rls") (unless (executable-find "rls")
(warn! "Couldn't find rls"))))) (warn! "Couldn't find rls")))))