diff options
-rw-r--r-- | README.md | 15 | ||||
-rw-r--r-- | editors/code/package.json | 4 |
2 files changed, 7 insertions, 12 deletions
@@ -42,14 +42,13 @@ powered editor. | |||
42 | ## Current Status and Plans | 42 | ## Current Status and Plans |
43 | 43 | ||
44 | Rust analyzer aims to fill the same niche as the official [Rust | 44 | Rust analyzer aims to fill the same niche as the official [Rust |
45 | Language Server](https://github.com/rust-lang-nursery/rls), but | 45 | Language Server](https://github.com/rust-lang-nursery/rls), but uses a |
46 | better. It was created because @matklad is not satisfied with RLS | 46 | significantly different architecture. More details can be found [in |
47 | original starting point and current direction. More details can be | 47 | this |
48 | found [in this | 48 | thread](https://internals.rust-lang.org/t/2019-strategy-for-rustc-and-the-rls/8361), |
49 | thread](https://internals.rust-lang.org/t/2019-strategy-for-rustc-and-the-rls/8361). | 49 | but the core issue is that RLS works in the "wait until user stops |
50 | The core issue is that RLS works in the "wait until user stops typing, | 50 | typing, run the build process, save the results of the analysis" mode, |
51 | run the build process, save the results of the analysis" mode, which | 51 | which arguably is the wrong foundation for IDE. |
52 | arguably is the wrong foundation for IDE (see the thread for details). | ||
53 | 52 | ||
54 | Rust Analyzer is a hobby project at the moment, there's exactly zero | 53 | Rust Analyzer is a hobby project at the moment, there's exactly zero |
55 | guarantees that it becomes production-ready one day. | 54 | guarantees that it becomes production-ready one day. |
diff --git a/editors/code/package.json b/editors/code/package.json index cc8fb93f5..0cfba5db6 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -58,10 +58,6 @@ | |||
58 | ], | 58 | ], |
59 | "commands": [ | 59 | "commands": [ |
60 | { | 60 | { |
61 | "command": "ra-lsp.createFile", | ||
62 | "title": "Show Rust syntax tree" | ||
63 | }, | ||
64 | { | ||
65 | "command": "ra-lsp.syntaxTree", | 61 | "command": "ra-lsp.syntaxTree", |
66 | "title": "Show Rust syntax tree" | 62 | "title": "Show Rust syntax tree" |
67 | }, | 63 | }, |