Files
rust/editors/code/src/commands/server_version.ts

11 lines
279 B
TypeScript
Raw Normal View History

2020-02-21 10:04:03 +08:00
import * as vscode from 'vscode';
import { ServerVersion } from '../installation/server';
import { Cmd } from '../ctx';
export function serverVersion(): Cmd {
return () => {
vscode.window.showInformationMessage('rust-analyzer version : ' + ServerVersion);
};
2020-02-20 16:49:31 +08:00
}