Files
rust/editors/code/src/commands/on_enter.ts

35 lines
969 B
TypeScript
Raw Normal View History

import * as vscode from 'vscode';
import * as ra from '../rust-analyzer-api';
2019-12-30 19:07:28 +01:00
import { applySourceChange } from '../source_change';
2019-12-30 16:43:34 +01:00
import { Cmd, Ctx } from '../ctx';
async function handleKeypress(ctx: Ctx) {
const editor = ctx.activeRustEditor;
const client = ctx.client;
2020-02-05 00:13:46 +02:00
if (!editor || !client) return false;
const change = await client.sendRequest(ra.onEnter, {
textDocument: { uri: editor.document.uri.toString() },
position: client.code2ProtocolConverter.asPosition(
editor.selection.active,
),
}).catch(_error => {
// client.logFailedRequest(OnEnterRequest.type, error);
return null;
});
if (!change) return false;
await applySourceChange(ctx, change);
return true;
}
export function onEnter(ctx: Ctx): Cmd {
return async () => {
if (await handleKeypress(ctx)) return;
2019-12-30 16:43:34 +01:00
await vscode.commands.executeCommand('default:type', { text: '\n' });
2019-12-30 18:31:08 +01:00
};
}