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