diff options
author | Laurențiu Nicola <[email protected]> | 2021-03-12 17:49:00 +0000 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2021-03-12 17:49:00 +0000 |
commit | 88ef0541a5110563f3f2e92532da37209d264ad9 (patch) | |
tree | 4e7a8cdab4df02b11434049e0f70daf952a54098 /editors/code | |
parent | c0459c53572f90fa9134192e432562af3daba5fa (diff) |
Improve version display
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/commands.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index 283b9a160..3e96fbad8 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts | |||
@@ -253,11 +253,10 @@ export function ssr(ctx: Ctx): Cmd { | |||
253 | export function serverVersion(ctx: Ctx): Cmd { | 253 | export function serverVersion(ctx: Ctx): Cmd { |
254 | return async () => { | 254 | return async () => { |
255 | const { stdout } = spawnSync(ctx.serverPath, ["--version"], { encoding: "utf8" }); | 255 | const { stdout } = spawnSync(ctx.serverPath, ["--version"], { encoding: "utf8" }); |
256 | const commitHash = stdout.slice(`rust-analyzer `.length).trim(); | 256 | const versionString = stdout.slice(`rust-analyzer `.length).trim(); |
257 | const { releaseTag } = ctx.config.package; | ||
258 | 257 | ||
259 | void vscode.window.showInformationMessage( | 258 | void vscode.window.showInformationMessage( |
260 | `rust-analyzer version: ${releaseTag ?? "unreleased"} (${commitHash})` | 259 | `rust-analyzer version: ${versionString}` |
261 | ); | 260 | ); |
262 | }; | 261 | }; |
263 | } | 262 | } |