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

9 lines
277 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);
};
}