Unnamed repository; edit this file 'description' to name the repository.
fix: Support multiple tab stops in completions in VSCode
Uses the native VSCode support for `SnippetTextEdit`s, but in a semi-hacky way as it's not fully supported yet.
DropDemBits 2024-02-16
parent b9b0d29 · commit d846586
-rw-r--r--editors/code/src/commands.ts66
-rw-r--r--editors/code/src/snippets.ts87
2 files changed, 98 insertions, 55 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts
index 3d33d255ad..849fae5cf2 100644
--- a/editors/code/src/commands.ts
+++ b/editors/code/src/commands.ts
@@ -4,7 +4,11 @@ import * as ra from "./lsp_ext";
import * as path from "path";
import type { Ctx, Cmd, CtxInit } from "./ctx";
-import { applySnippetWorkspaceEdit, applySnippetTextEdits } from "./snippets";
+import {
+ applySnippetWorkspaceEdit,
+ applySnippetTextEdits,
+ type SnippetTextDocumentEdit,
+} from "./snippets";
import { spawnSync } from "child_process";
import { type RunnableQuickPick, selectRunnable, createTask, createArgs } from "./run";
import { AstInspector } from "./ast_inspector";
@@ -1006,7 +1010,6 @@ export function resolveCodeAction(ctx: CtxInit): Cmd {
return;
}
const itemEdit = item.edit;
- const edit = await client.protocol2CodeConverter.asWorkspaceEdit(itemEdit);
// filter out all text edits and recreate the WorkspaceEdit without them so we can apply
// snippet edits on our own
const lcFileSystemEdit = {
@@ -1017,16 +1020,71 @@ export function resolveCodeAction(ctx: CtxInit): Cmd {
lcFileSystemEdit,
);
await vscode.workspace.applyEdit(fileSystemEdit);
- await applySnippetWorkspaceEdit(edit);
+
+ // replace all text edits so that we can convert snippet text edits into `vscode.SnippetTextEdit`s
+ // FIXME: this is a workaround until vscode-languageclient supports doing the SnippeTextEdit conversion itself
+ // also need to carry the snippetTextDocumentEdits separately, since we can't retrieve them again using WorkspaceEdit.entries
+ const [workspaceTextEdit, snippetTextDocumentEdits] = asWorkspaceSnippetEdit(ctx, itemEdit);
+ await applySnippetWorkspaceEdit(workspaceTextEdit, snippetTextDocumentEdits);
if (item.command != null) {
await vscode.commands.executeCommand(item.command.command, item.command.arguments);
}
};
}
+function asWorkspaceSnippetEdit(
+ ctx: CtxInit,
+ item: lc.WorkspaceEdit,
+): [vscode.WorkspaceEdit, SnippetTextDocumentEdit[]] {
+ const client = ctx.client;
+
+ // partially borrowed from https://github.com/microsoft/vscode-languageserver-node/blob/295aaa393fda8ecce110c38880a00466b9320e63/client/src/common/protocolConverter.ts#L1060-L1101
+ const result = new vscode.WorkspaceEdit();
+
+ if (item.documentChanges) {
+ const snippetTextDocumentEdits: SnippetTextDocumentEdit[] = [];
+
+ for (const change of item.documentChanges) {
+ if (lc.TextDocumentEdit.is(change)) {
+ const uri = client.protocol2CodeConverter.asUri(change.textDocument.uri);
+ const snippetTextEdits: (vscode.TextEdit | vscode.SnippetTextEdit)[] = [];
+
+ for (const edit of change.edits) {
+ if (
+ "insertTextFormat" in edit &&
+ edit.insertTextFormat === lc.InsertTextFormat.Snippet
+ ) {
+ // is a snippet text edit
+ snippetTextEdits.push(
+ new vscode.SnippetTextEdit(
+ client.protocol2CodeConverter.asRange(edit.range),
+ new vscode.SnippetString(edit.newText),
+ ),
+ );
+ } else {
+ // always as a text document edit
+ snippetTextEdits.push(
+ vscode.TextEdit.replace(
+ client.protocol2CodeConverter.asRange(edit.range),
+ edit.newText,
+ ),
+ );
+ }
+ }
+
+ snippetTextDocumentEdits.push([uri, snippetTextEdits]);
+ }
+ }
+ return [result, snippetTextDocumentEdits];
+ } else {
+ // we don't handle WorkspaceEdit.changes since it's not relevant for code actions
+ return [result, []];
+ }
+}
+
export function applySnippetWorkspaceEditCommand(_ctx: CtxInit): Cmd {
return async (edit: vscode.WorkspaceEdit) => {
- await applySnippetWorkspaceEdit(edit);
+ await applySnippetWorkspaceEdit(edit, edit.entries());
};
}
diff --git a/editors/code/src/snippets.ts b/editors/code/src/snippets.ts
index d81765649f..fb12125bcd 100644
--- a/editors/code/src/snippets.ts
+++ b/editors/code/src/snippets.ts
@@ -3,20 +3,28 @@ import * as vscode from "vscode";
import { assert } from "./util";
import { unwrapUndefinable } from "./undefinable";
-export async function applySnippetWorkspaceEdit(edit: vscode.WorkspaceEdit) {
- if (edit.entries().length === 1) {
- const [uri, edits] = unwrapUndefinable(edit.entries()[0]);
+export type SnippetTextDocumentEdit = [vscode.Uri, (vscode.TextEdit | vscode.SnippetTextEdit)[]];
+
+export async function applySnippetWorkspaceEdit(
+ edit: vscode.WorkspaceEdit,
+ editEntries: SnippetTextDocumentEdit[],
+) {
+ if (editEntries.length === 1) {
+ const [uri, edits] = unwrapUndefinable(editEntries[0]);
const editor = await editorFromUri(uri);
- if (editor) await applySnippetTextEdits(editor, edits);
+ if (editor) {
+ edit.set(uri, edits);
+ await vscode.workspace.applyEdit(edit);
+ }
return;
}
- for (const [uri, edits] of edit.entries()) {
+ for (const [uri, edits] of editEntries) {
const editor = await editorFromUri(uri);
if (editor) {
await editor.edit((builder) => {
for (const indel of edits) {
assert(
- !parseSnippet(indel.newText),
+ !(indel instanceof vscode.SnippetTextEdit),
`bad ws edit: snippet received with multiple edits: ${JSON.stringify(
edit,
)}`,
@@ -39,53 +47,30 @@ async function editorFromUri(uri: vscode.Uri): Promise<vscode.TextEditor | undef
}
export async function applySnippetTextEdits(editor: vscode.TextEditor, edits: vscode.TextEdit[]) {
- const selections: vscode.Selection[] = [];
- let lineDelta = 0;
- await editor.edit((builder) => {
- for (const indel of edits) {
- const parsed = parseSnippet(indel.newText);
- if (parsed) {
- const [newText, [placeholderStart, placeholderLength]] = parsed;
- const prefix = newText.substr(0, placeholderStart);
- const lastNewline = prefix.lastIndexOf("\n");
-
- const startLine = indel.range.start.line + lineDelta + countLines(prefix);
- const startColumn =
- lastNewline === -1
- ? indel.range.start.character + placeholderStart
- : prefix.length - lastNewline - 1;
- const endColumn = startColumn + placeholderLength;
- selections.push(
- new vscode.Selection(
- new vscode.Position(startLine, startColumn),
- new vscode.Position(startLine, endColumn),
- ),
- );
- builder.replace(indel.range, newText);
- } else {
- builder.replace(indel.range, indel.newText);
- }
- lineDelta +=
- countLines(indel.newText) - (indel.range.end.line - indel.range.start.line);
- }
- });
- if (selections.length > 0) editor.selections = selections;
- if (selections.length === 1) {
- const selection = unwrapUndefinable(selections[0]);
- editor.revealRange(selection, vscode.TextEditorRevealType.InCenterIfOutsideViewport);
- }
+ const edit = new vscode.WorkspaceEdit();
+ edit.set(editor.document.uri, toSnippetTextEdits(edits));
+ await vscode.workspace.applyEdit(edit);
}
-function parseSnippet(snip: string): [string, [number, number]] | undefined {
- const m = snip.match(/\$(0|\{0:([^}]*)\})/);
- if (!m) return undefined;
- const placeholder = m[2] ?? "";
- if (m.index == null) return undefined;
- const range: [number, number] = [m.index, placeholder.length];
- const insert = snip.replace(m[0], placeholder);
- return [insert, range];
+function hasSnippet(snip: string): boolean {
+ const m = snip.match(/\$\d+|\{\d+:[^}]*\}/);
+ return m != null;
}
-function countLines(text: string): number {
- return (text.match(/\n/g) || []).length;
+function toSnippetTextEdits(
+ edits: vscode.TextEdit[],
+): (vscode.TextEdit | vscode.SnippetTextEdit)[] {
+ return edits.map((textEdit) => {
+ // Note: text edits without any snippets are returned as-is instead of
+ // being wrapped in a SnippetTextEdit, as otherwise it would be
+ // treated as if it had a tab stop at the end.
+ if (hasSnippet(textEdit.newText)) {
+ return new vscode.SnippetTextEdit(
+ textEdit.range,
+ new vscode.SnippetString(textEdit.newText),
+ );
+ } else {
+ return textEdit;
+ }
+ });
}