rust-analyzer/editors/code/src/commands/index.ts

57 lines
1.8 KiB
TypeScript
Raw Normal View History

2019-12-30 19:07:04 +00:00
import * as vscode from 'vscode';
import * as lc from 'vscode-languageclient';
import * as ra from '../rust-analyzer-api';
2019-12-30 19:07:04 +00:00
2019-12-30 17:31:08 +00:00
import { Ctx, Cmd } from '../ctx';
2020-05-25 08:59:54 +00:00
import { applySnippetWorkspaceEdit } from '../snippets';
2019-12-30 13:53:43 +00:00
export * from './analyzer_status';
export * from './matching_brace';
export * from './join_lines';
export * from './on_enter';
export * from './parent_module';
export * from './syntax_tree';
export * from './expand_macro';
export * from './runnables';
export * from './ssr';
2020-02-21 02:04:03 +00:00
export * from './server_version';
export * from './toggle_inlay_hints';
export function collectGarbage(ctx: Ctx): Cmd {
return async () => ctx.client.sendRequest(ra.collectGarbage, null);
2019-12-30 13:53:43 +00:00
}
export function showReferences(ctx: Ctx): Cmd {
2019-12-30 19:07:04 +00:00
return (uri: string, position: lc.Position, locations: lc.Location[]) => {
const client = ctx.client;
2019-12-31 17:14:00 +00:00
if (client) {
vscode.commands.executeCommand(
'editor.action.showReferences',
vscode.Uri.parse(uri),
client.protocol2CodeConverter.asPosition(position),
locations.map(client.protocol2CodeConverter.asLocation),
);
}
2019-12-30 19:07:04 +00:00
};
}
export function applySourceChange(ctx: Ctx): Cmd {
return async (change: ra.SourceChange) => {
await sourceChange.applySourceChange(ctx, change);
2020-01-11 22:40:36 +00:00
};
}
2020-05-22 15:29:55 +00:00
export function applyActionGroup(_ctx: Ctx): Cmd {
return async (actions: { label: string; edit: vscode.WorkspaceEdit }[]) => {
const selectedAction = await vscode.window.showQuickPick(actions);
if (!selectedAction) return;
await applySnippetWorkspaceEdit(selectedAction.edit);
2019-12-31 17:55:34 +00:00
};
}
export function applySnippetWorkspaceEditCommand(_ctx: Ctx): Cmd {
return async (edit: vscode.WorkspaceEdit) => {
await applySnippetWorkspaceEdit(edit);
};
}