2018-10-09 16:00:20 +03:00
|
|
|
import * as lc from 'vscode-languageclient';
|
2019-12-30 19:07:28 +01:00
|
|
|
|
2019-12-30 18:31:08 +01:00
|
|
|
import { applySourceChange, SourceChange } from '../source_change';
|
2019-12-30 16:43:34 +01:00
|
|
|
import { Cmd, Ctx } from '../ctx';
|
2018-10-09 16:00:20 +03:00
|
|
|
|
2019-12-30 16:43:34 +01:00
|
|
|
export function onEnter(ctx: Ctx): Cmd {
|
|
|
|
|
return async (event: { text: string }) => {
|
|
|
|
|
const editor = ctx.activeRustEditor;
|
2019-12-31 18:50:32 +01:00
|
|
|
const client = ctx.client;
|
2019-12-30 16:43:34 +01:00
|
|
|
if (!editor || event.text !== '\n') return false;
|
2019-12-31 18:50:32 +01:00
|
|
|
if (!client) return false;
|
2019-12-30 16:43:34 +01:00
|
|
|
|
|
|
|
|
const request: lc.TextDocumentPositionParams = {
|
|
|
|
|
textDocument: { uri: editor.document.uri.toString() },
|
2019-12-31 18:50:32 +01:00
|
|
|
position: client.code2ProtocolConverter.asPosition(
|
2019-12-30 16:43:34 +01:00
|
|
|
editor.selection.active,
|
|
|
|
|
),
|
|
|
|
|
};
|
2019-12-31 18:50:32 +01:00
|
|
|
const change = await client.sendRequest<undefined | SourceChange>(
|
2019-12-30 16:43:34 +01:00
|
|
|
'rust-analyzer/onEnter',
|
|
|
|
|
request,
|
|
|
|
|
);
|
|
|
|
|
if (!change) return false;
|
|
|
|
|
|
|
|
|
|
await applySourceChange(ctx, change);
|
|
|
|
|
return true;
|
2019-12-30 18:31:08 +01:00
|
|
|
};
|
2018-10-09 16:00:20 +03:00
|
|
|
}
|