vscode: show release tag with along with the commit hash for RA version command

This commit is contained in:
veetaha 2020-03-24 01:15:56 +02:00
parent d2619bf0ca
commit 0072aa31ed

View file

@ -4,7 +4,12 @@ import { Ctx, Cmd } from '../ctx';
export function serverVersion(ctx: Ctx): Cmd {
return async () => {
const version = spawnSync(ctx.serverPath, ["--version"], { encoding: "utf8" }).stdout;
vscode.window.showInformationMessage('rust-analyzer version : ' + version);
const { stdout } = spawnSync(ctx.serverPath, ["--version"], { encoding: "utf8" });
const commitHash = stdout.slice(`rust-analyzer `.length).trim();
const { releaseTag } = ctx.config;
void vscode.window.showInformationMessage(
`rust-analyzer version: ${releaseTag ?? "unreleased"} (${commitHash})`
);
};
}