rust/editors/code/src/ctx.ts

29 lines
730 B
TypeScript
Raw Normal View History

2019-12-30 07:42:59 -06:00
import * as vscode from 'vscode';
import * as lc from 'vscode-languageclient';
import { Server } from './server';
export class Ctx {
2019-12-30 08:11:30 -06:00
private extCtx: vscode.ExtensionContext;
2019-12-30 07:42:59 -06:00
constructor(extCtx: vscode.ExtensionContext) {
2019-12-30 08:11:30 -06:00
this.extCtx = extCtx;
2019-12-30 07:42:59 -06:00
}
get client(): lc.LanguageClient {
2019-12-30 08:11:30 -06:00
return Server.client;
2019-12-30 07:42:59 -06:00
}
2019-12-30 08:11:30 -06:00
registerCommand(name: string, factory: (ctx: Ctx) => Cmd) {
const fullName = `rust-analyzer.${name}`;
2019-12-30 07:42:59 -06:00
const cmd = factory(this);
const d = vscode.commands.registerCommand(fullName, cmd);
this.pushCleanup(d);
}
pushCleanup(d: { dispose(): any }) {
2019-12-30 08:11:30 -06:00
this.extCtx.subscriptions.push(d);
2019-12-30 07:42:59 -06:00
}
}
2019-12-30 07:53:43 -06:00
export type Cmd = (...args: any[]) => any;