Skip to content

Commit

Permalink
Auto merge of #12242 - flodiebold:extension-description, r=flodiebold
Browse files Browse the repository at this point in the history
Improve extension description and README
  • Loading branch information
bors committed May 15, 2022
2 parents 5ae9847 + 3dcf9e0 commit ac4ce42
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
21 changes: 10 additions & 11 deletions editors/code/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# rust-analyzer

This extension provides support for the [Rust programming language](https://www.rust-lang.org/).
It is recommended over and replaces `rust-lang.rust`.

## Features

Expand All @@ -10,9 +11,9 @@ This extension provides support for the [Rust programming language](https://www.
- [types and documentation on hover]
- [inlay hints] for types and parameter names
- [semantic syntax highlighting]
- a lot of [assists(code actions)]
- a lot of [assists (code actions)]
- apply suggestions from errors
- ... and many more, checkout the [manual] to see them all
- ... and many more, check out the [manual] to see them all

[code completion]: https://rust-analyzer.github.io/manual.html#magic-completions
[imports insertion]: https://rust-analyzer.github.io/manual.html#completion-with-autoimport
Expand All @@ -25,29 +26,27 @@ This extension provides support for the [Rust programming language](https://www.
[types and documentation on hover]: https://rust-analyzer.github.io/manual.html#hover
[inlay hints]: https://rust-analyzer.github.io/manual.html#inlay-hints
[semantic syntax highlighting]: https://rust-analyzer.github.io/manual.html#semantic-syntax-highlighting
[assists(code actions)]: https://rust-analyzer.github.io/manual.html#assists-code-actions
[assists (code actions)]: https://rust-analyzer.github.io/manual.html#assists-code-actions
[manual]: https://rust-analyzer.github.io/manual.html

## Quick start

1. Install [rustup]
2. Install the [rust-analyzer extension]
1. Install [rustup].
2. Install the [rust-analyzer extension].

[rustup]: https://rustup.rs
[rust-analyzer extension]: https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer

## Configuration

This extension provides configurations through VSCode's configuration settings. All the configurations are under `rust-analyzer.*`.
This extension provides configurations through VSCode's configuration settings. All configurations are under `rust-analyzer.*`.

See <https://rust-analyzer.github.io/manual.html#vs-code-2> for more information on VSCode specific configurations.
See [the manual](https://rust-analyzer.github.io/manual.html#vs-code-2) for more information on VSCode specific configurations.

## Communication

For usage and troubleshooting requests, please use "IDEs and Editors" category of the Rust forum:

<https://users.rust-lang.org/c/ide/14>
For usage and troubleshooting requests, please use the ["IDEs and Editors" category of the Rust forum](https://users.rust-lang.org/c/ide/14).

## Documentation

See <https://rust-analyzer.github.io/> for more information.
See [rust-analyzer.github.io](https://rust-analyzer.github.io/) for more information.
5 changes: 2 additions & 3 deletions editors/code/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"name": "rust-analyzer",
"displayName": "rust-analyzer",
"description": "A language server for the rust programming language",
"preview": true,
"description": "Rust language support for Visual Studio Code",
"private": true,
"icon": "icon.png",
"version": "0.4.0-dev",
"releaseTag": null,
"publisher": "rust-lang",
"repository": {
"url": "https://github.com/rust-analyzer/rust-analyzer.git",
"url": "https://github.com/rust-lang/rust-analyzer.git",
"type": "git"
},
"homepage": "https://rust-analyzer.github.io/",
Expand Down

0 comments on commit ac4ce42

Please sign in to comment.