aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorLukas Wirth <[email protected]>2021-03-01 10:07:15 +0000
committerLukas Wirth <[email protected]>2021-03-01 10:08:26 +0000
commit91ff47ef6ac55f66ca57a2b1ee2eae62f50213f2 (patch)
treeb57ada424390564372fc8263c0a72fbfb9f6f040 /editors
parent5df3ee8274fdb7cdeb2b0871b4efea8cbf4724a1 (diff)
Update vscode README with a small features list
Diffstat (limited to 'editors')
-rw-r--r--editors/code/README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/editors/code/README.md b/editors/code/README.md
index 336695d9f..e7d7a06f0 100644
--- a/editors/code/README.md
+++ b/editors/code/README.md
@@ -2,4 +2,32 @@
2 2
3Provides support for rust-analyzer: novel LSP server for the Rust programming language. 3Provides support for rust-analyzer: novel LSP server for the Rust programming language.
4 4
5
6Features:
7
8* [code completion], [imports insertion]
9* [go to definition], [implementation], [type definition]
10* [find all references], [workspace symbol search], [rename]
11* [types and documentation on hover]
12* [inlay hints]
13* [semantic syntax highlighting]
14* a lot of [assist(code actions)]
15* apply suggestions from errors
16* ... and many more, checkout the [manual] to see them all
17
18[code completion]: https://rust-analyzer.github.io/manual.html#magic-completions
19[imports insertion]: https://rust-analyzer.github.io/manual.html#auto-import
20[go to definition]: https://rust-analyzer.github.io/manual.html#go-to-definition
21[implementation]: https://rust-analyzer.github.io/manual.html#go-to-implementation
22[type definition]: https://rust-analyzer.github.io/manual.html#go-to-type-definition
23[find all references]: https://rust-analyzer.github.io/manual.html#find-all-references
24[workspace symbol search]: https://rust-analyzer.github.io/manual.html#workspace-symbol
25[rename]: https://rust-analyzer.github.io/manual.html#rename
26[types and documentation on hover]: https://rust-analyzer.github.io/manual.html#hover
27[inlay hints]: https://rust-analyzer.github.io/manual.html#inlay-hints
28[semantic syntax highlighting]: https://rust-analyzer.github.io/manual.html#semantic-syntax-highlighting
29[assist(code actions)]: https://rust-analyzer.github.io/manual.html#assists-code-actions
30
31[manual]: https://rust-analyzer.github.io/manual.html
32
5See https://rust-analyzer.github.io/ for more information. 33See https://rust-analyzer.github.io/ for more information.