We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
\\
1 parent 10393bd commit 5059573Copy full SHA for 5059573
src/commands.ts
@@ -584,7 +584,7 @@ export async function applySnippetWorkspaceEdit(edit: WorkspaceEdit) {
584
585
for (const indel of change.edits) {
586
const { range } = indel;
587
- let { newText } = indel;
+ let newText = indel.newText.replace('\\}', '}');
588
const parsed = parseSnippet(newText);
589
if (parsed) {
590
const [insert, [placeholderStart, placeholderLength]] = parsed;
0 commit comments