diff options
-rw-r--r-- | editors/code/src/commands/server_version.ts | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/editors/code/src/commands/server_version.ts b/editors/code/src/commands/server_version.ts index 03528b825..45fdefb12 100644 --- a/editors/code/src/commands/server_version.ts +++ b/editors/code/src/commands/server_version.ts | |||
@@ -4,7 +4,12 @@ import { Ctx, Cmd } from '../ctx'; | |||
4 | 4 | ||
5 | export function serverVersion(ctx: Ctx): Cmd { | 5 | export function serverVersion(ctx: Ctx): Cmd { |
6 | return async () => { | 6 | return async () => { |
7 | const version = spawnSync(ctx.serverPath, ["--version"], { encoding: "utf8" }).stdout; | 7 | const { stdout } = spawnSync(ctx.serverPath, ["--version"], { encoding: "utf8" }); |
8 | vscode.window.showInformationMessage('rust-analyzer version : ' + version); | 8 | const commitHash = stdout.slice(`rust-analyzer `.length).trim(); |
9 | const { releaseTag } = ctx.config; | ||
10 | |||
11 | void vscode.window.showInformationMessage( | ||
12 | `rust-analyzer version: ${releaseTag ?? "unreleased"} (${commitHash})` | ||
13 | ); | ||
9 | }; | 14 | }; |
10 | } | 15 | } |