2019-12-30 19:07:04 +00:00
|
|
|
import * as vscode from 'vscode';
|
|
|
|
import * as lc from 'vscode-languageclient';
|
2020-02-24 22:50:57 +00:00
|
|
|
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';
|
2019-12-30 22:45:50 +00:00
|
|
|
import * as sourceChange from '../source_change';
|
2020-05-17 23:53:55 +00:00
|
|
|
import { assert } from '../util';
|
2019-12-30 13:53:43 +00:00
|
|
|
|
2020-02-02 19:37:22 +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';
|
2020-02-10 22:45:38 +00:00
|
|
|
export * from './ssr';
|
2020-02-21 02:04:03 +00:00
|
|
|
export * from './server_version';
|
2020-02-02 19:37:22 +00:00
|
|
|
|
|
|
|
export function collectGarbage(ctx: Ctx): Cmd {
|
2020-02-24 22:50:57 +00:00
|
|
|
return async () => ctx.client.sendRequest(ra.collectGarbage, null);
|
2019-12-30 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 19:37:22 +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[]) => {
|
2020-02-02 19:12:59 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-02-02 19:37:22 +00:00
|
|
|
export function applySourceChange(ctx: Ctx): Cmd {
|
2020-02-24 22:50:57 +00:00
|
|
|
return async (change: ra.SourceChange) => {
|
2020-02-05 20:39:47 +00:00
|
|
|
await sourceChange.applySourceChange(ctx, change);
|
2020-01-11 22:40:36 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-02-02 19:37:22 +00:00
|
|
|
export function selectAndApplySourceChange(ctx: Ctx): Cmd {
|
2020-02-24 22:50:57 +00:00
|
|
|
return async (changes: ra.SourceChange[]) => {
|
2020-01-11 22:40:36 +00:00
|
|
|
if (changes.length === 1) {
|
|
|
|
await sourceChange.applySourceChange(ctx, changes[0]);
|
|
|
|
} else if (changes.length > 0) {
|
|
|
|
const selectedChange = await vscode.window.showQuickPick(changes);
|
|
|
|
if (!selectedChange) return;
|
|
|
|
await sourceChange.applySourceChange(ctx, selectedChange);
|
|
|
|
}
|
2019-12-31 17:55:34 +00:00
|
|
|
};
|
2019-12-30 22:45:50 +00:00
|
|
|
}
|
2020-05-17 23:53:55 +00:00
|
|
|
|
|
|
|
export function applySnippetWorkspaceEdit(_ctx: Ctx): Cmd {
|
|
|
|
return async (edit: vscode.WorkspaceEdit) => {
|
|
|
|
assert(edit.entries().length === 1, `bad ws edit: ${JSON.stringify(edit)}`);
|
|
|
|
const [uri, edits] = edit.entries()[0];
|
|
|
|
|
|
|
|
const editor = vscode.window.visibleTextEditors.find((it) => it.document.uri.toString() === uri.toString());
|
|
|
|
if (!editor) return;
|
|
|
|
|
|
|
|
let editWithSnippet: vscode.TextEdit | undefined = undefined;
|
|
|
|
let lineDelta = 0;
|
|
|
|
await editor.edit((builder) => {
|
|
|
|
for (const indel of edits) {
|
2020-05-19 22:49:08 +00:00
|
|
|
const isSnippet = indel.newText.indexOf('$0') !== -1 || indel.newText.indexOf('${') !== -1;
|
|
|
|
if (isSnippet) {
|
2020-05-17 23:53:55 +00:00
|
|
|
editWithSnippet = indel;
|
|
|
|
} else {
|
|
|
|
if (!editWithSnippet) {
|
|
|
|
lineDelta = (indel.newText.match(/\n/g) || []).length - (indel.range.end.line - indel.range.start.line);
|
|
|
|
}
|
|
|
|
builder.replace(indel.range, indel.newText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (editWithSnippet) {
|
|
|
|
const snip = editWithSnippet as vscode.TextEdit;
|
|
|
|
const range = snip.range.with(
|
|
|
|
snip.range.start.with(snip.range.start.line + lineDelta),
|
|
|
|
snip.range.end.with(snip.range.end.line + lineDelta),
|
|
|
|
);
|
|
|
|
await editor.insertSnippet(new vscode.SnippetString(snip.newText), range);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|