diff options
author | Aleksey Kladov <[email protected]> | 2020-01-13 11:56:33 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-01-13 11:56:33 +0000 |
commit | 875352b2b64220e4e76d1aa49d51e85a46344d6a (patch) | |
tree | b9c7dea9a9b8c55351a20eb39aca36b54873ad91 | |
parent | 96e759413d64715c5c6f407c72b5ce1cbba0d8b7 (diff) |
Rename Emacs "extension"
-rw-r--r-- | docs/user/README.md | 2 | ||||
-rw-r--r-- | editors/emacs/rust-analyzer.el (renamed from editors/emacs/ra-emacs-lsp.el) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/user/README.md b/docs/user/README.md index d17108788..9d3258c06 100644 --- a/docs/user/README.md +++ b/docs/user/README.md | |||
@@ -137,7 +137,7 @@ Prerequisites: | |||
137 | Installation: | 137 | Installation: |
138 | 138 | ||
139 | * add | 139 | * add |
140 | [ra-emacs-lsp.el](../../editors/emacs/ra-emacs-lsp.el) | 140 | [rust-analyzer.el](../../editors/emacs/rust-analyzer.el) |
141 | to load path and require it in `init.el` | 141 | to load path and require it in `init.el` |
142 | * run `lsp` in a rust buffer | 142 | * run `lsp` in a rust buffer |
143 | * (Optionally) bind commands like `rust-analyzer-join-lines`, `rust-analyzer-extend-selection` and `rust-analyzer-expand-macro` to keys, and enable `rust-analyzer-inlay-hints-mode` to get inline type hints | 143 | * (Optionally) bind commands like `rust-analyzer-join-lines`, `rust-analyzer-extend-selection` and `rust-analyzer-expand-macro` to keys, and enable `rust-analyzer-inlay-hints-mode` to get inline type hints |
diff --git a/editors/emacs/ra-emacs-lsp.el b/editors/emacs/rust-analyzer.el index b41a09dea..8ba98bf61 100644 --- a/editors/emacs/ra-emacs-lsp.el +++ b/editors/emacs/rust-analyzer.el | |||
@@ -1,4 +1,4 @@ | |||
1 | ;;; ra-emacs-lsp.el --- Rust analyzer emacs bindings for emacs-lsp -*- lexical-binding: t; -*- | 1 | ;;; rust-analyzer.el --- Rust analyzer emacs bindings for emacs-lsp -*- lexical-binding: t; -*- |
2 | ;;; Code: | 2 | ;;; Code: |
3 | 3 | ||
4 | (require 'lsp) | 4 | (require 'lsp) |
@@ -275,5 +275,5 @@ | |||
275 | (message "No macro found at point, or it could not be expanded"))))))) | 275 | (message "No macro found at point, or it could not be expanded"))))))) |
276 | 276 | ||
277 | 277 | ||
278 | (provide 'ra-emacs-lsp) | 278 | (provide 'rust-analyzer) |
279 | ;;; ra-emacs-lsp.el ends here | 279 | ;;; rust-analyzer.el ends here |