2019-12-30 20:07:04 +01:00
|
|
|
import * as vscode from 'vscode';
|
|
|
|
|
import * as lc from 'vscode-languageclient';
|
|
|
|
|
|
2019-12-30 18:31:08 +01:00
|
|
|
import { Ctx, Cmd } from '../ctx';
|
2019-12-30 23:45:50 +01:00
|
|
|
import * as sourceChange from '../source_change';
|
2019-12-30 14:53:43 +01:00
|
|
|
|
2020-02-02 21:37:22 +02: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 function collectGarbage(ctx: Ctx): Cmd {
|
2019-12-30 18:31:08 +01:00
|
|
|
return async () => {
|
2019-12-31 18:14:00 +01:00
|
|
|
ctx.client?.sendRequest<null>('rust-analyzer/collectGarbage', null);
|
2019-12-30 18:31:08 +01:00
|
|
|
};
|
2019-12-30 14:53:43 +01:00
|
|
|
}
|
|
|
|
|
|
2020-02-02 21:37:22 +02:00
|
|
|
export function showReferences(ctx: Ctx): Cmd {
|
2019-12-30 20:07:04 +01:00
|
|
|
return (uri: string, position: lc.Position, locations: lc.Location[]) => {
|
2020-02-02 21:12:59 +02:00
|
|
|
const client = ctx.client;
|
2019-12-31 18:14:00 +01: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 20:07:04 +01:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-02 21:37:22 +02:00
|
|
|
export function applySourceChange(ctx: Ctx): Cmd {
|
2020-01-12 00:40:36 +02:00
|
|
|
return async (change: sourceChange.SourceChange) => {
|
2020-02-05 22:39:47 +02:00
|
|
|
await sourceChange.applySourceChange(ctx, change);
|
2020-01-12 00:40:36 +02:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-02 21:37:22 +02:00
|
|
|
export function selectAndApplySourceChange(ctx: Ctx): Cmd {
|
2020-01-12 00:40:36 +02:00
|
|
|
return async (changes: sourceChange.SourceChange[]) => {
|
|
|
|
|
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 18:55:34 +01:00
|
|
|
};
|
2019-12-30 23:45:50 +01:00
|
|
|
}
|
|
|
|
|
|
2020-02-02 21:37:22 +02:00
|
|
|
export function reload(ctx: Ctx): Cmd {
|
2019-12-31 18:14:00 +01:00
|
|
|
return async () => {
|
|
|
|
|
vscode.window.showInformationMessage('Reloading rust-analyzer...');
|
|
|
|
|
await ctx.restartServer();
|
2019-12-31 18:55:34 +01:00
|
|
|
};
|
2019-12-31 18:14:00 +01:00
|
|
|
}
|