File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ The rust-analyzer plugin for VS Code is maintained
61
61
https://github.com/rust-analyzer/rust-analyzer/tree/master/editors/code[in tree].
62
62
63
63
You can install the latest release of the plugin from
64
- https://marketplace.visualstudio.com/items?itemName=matklad .rust-analyzer[the marketplace].
64
+ https://marketplace.visualstudio.com/items?itemName=rust-lang .rust-analyzer[the marketplace].
65
65
66
66
Note that the plugin may cause conflicts with the
67
67
https://marketplace.visualstudio.com/items?itemName=rust-lang.rust[official Rust plugin].
@@ -81,14 +81,14 @@ To disable this notification put the following to `settings.json`
81
81
----
82
82
====
83
83
84
- The server binary is stored in the extension install directory, which starts with `matklad .rust-analyzer-` and is located under:
84
+ The server binary is stored in the extension install directory, which starts with `rust-lang .rust-analyzer-` and is located under:
85
85
86
86
* Linux: `~/.vscode/extensions`
87
87
* Linux (Remote, such as WSL): `~/.vscode-server/extensions`
88
88
* macOS: `~/.vscode/extensions`
89
89
* Windows: `%USERPROFILE%\.vscode\extensions`
90
90
91
- As an exception, on NixOS, the extension makes a copy of the server and stores it under `~/.config/Code/User/globalStorage/matklad .rust-analyzer`.
91
+ As an exception, on NixOS, the extension makes a copy of the server and stores it under `~/.config/Code/User/globalStorage/rust-lang .rust-analyzer`.
92
92
93
93
Note that we only support the two most recent versions of VS Code.
94
94
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ This extension provides support for the [Rust programming language](https://www.
34
34
2 . Install the [ rust-analyzer extension]
35
35
36
36
[ rustup ] : https://rustup.rs
37
- [ rust-analyzer extension ] : https://marketplace.visualstudio.com/items?itemName=matklad .rust-analyzer
37
+ [ rust-analyzer extension ] : https://marketplace.visualstudio.com/items?itemName=rust-lang .rust-analyzer
38
38
39
39
## Configuration
40
40
Original file line number Diff line number Diff line change 7
7
"icon" : " icon.png" ,
8
8
"version" : " 0.4.0-dev" ,
9
9
"releaseTag" : null ,
10
- "publisher" : " matklad " ,
10
+ "publisher" : " ryst-lang " ,
11
11
"repository" : {
12
12
"url" : " https://github.com/rust-analyzer/rust-analyzer.git" ,
13
13
"type" : " git"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const NIGHTLY_TAG = "nightly";
10
10
export type RunnableEnvCfg = undefined | Record < string , string > | { mask ?: string ; env : Record < string , string > } [ ] ;
11
11
12
12
export class Config {
13
- readonly extensionId = "matklad .rust-analyzer" ;
13
+ readonly extensionId = "rust-lang .rust-analyzer" ;
14
14
15
15
readonly rootSection = "rust-analyzer" ;
16
16
private readonly requiresReloadOpts = [
Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ async function isNixOs(): Promise<boolean> {
287
287
function warnAboutExtensionConflicts ( ) {
288
288
if ( vscode . extensions . getExtension ( "rust-lang.rust" ) ) {
289
289
vscode . window . showWarningMessage (
290
- `You have both the rust-analyzer (matklad .rust-analyzer) and Rust (rust-lang.rust) ` +
290
+ `You have both the rust-analyzer (rust-lang .rust-analyzer) and Rust (rust-lang.rust) ` +
291
291
"plugins enabled. These are known to conflict and cause various functions of " +
292
292
"both plugins to not work correctly. You should disable one of them." , "Got it" )
293
293
. then ( ( ) => { } , console . error ) ;
You can’t perform that action at this time.
0 commit comments