feat: Change VSCode extension publisher to rust-lang

This commit is contained in:
Lukas Wirth
2022-05-13 13:21:52 +02:00
parent d57beac7e6
commit e47f4597d4
5 changed files with 7 additions and 7 deletions

View File

@@ -34,7 +34,7 @@ This extension provides support for the [Rust programming language](https://www.
2. Install the [rust-analyzer extension]
[rustup]: https://rustup.rs
[rust-analyzer extension]: https://marketplace.visualstudio.com/items?itemName=matklad.rust-analyzer
[rust-analyzer extension]: https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer
## Configuration

View File

@@ -7,7 +7,7 @@
"icon": "icon.png",
"version": "0.4.0-dev",
"releaseTag": null,
"publisher": "matklad",
"publisher": "ryst-lang",
"repository": {
"url": "https://github.com/rust-analyzer/rust-analyzer.git",
"type": "git"

View File

@@ -10,7 +10,7 @@ const NIGHTLY_TAG = "nightly";
export type RunnableEnvCfg = undefined | Record<string, string> | { mask?: string; env: Record<string, string> }[];
export class Config {
readonly extensionId = "matklad.rust-analyzer";
readonly extensionId = "rust-lang.rust-analyzer";
readonly rootSection = "rust-analyzer";
private readonly requiresReloadOpts = [

View File

@@ -287,7 +287,7 @@ async function isNixOs(): Promise<boolean> {
function warnAboutExtensionConflicts() {
if (vscode.extensions.getExtension("rust-lang.rust")) {
vscode.window.showWarningMessage(
`You have both the rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust) ` +
`You have both the rust-analyzer (rust-lang.rust-analyzer) and Rust (rust-lang.rust) ` +
"plugins enabled. These are known to conflict and cause various functions of " +
"both plugins to not work correctly. You should disable one of them.", "Got it")
.then(() => { }, console.error);