We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67de6de commit ad04aabCopy full SHA for ad04aab
src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsModel.ts
@@ -522,7 +522,7 @@ export class InlineCompletionsSession extends BaseGhostTextWidgetModel {
522
]
523
);
524
this.editor.setPosition(completion.snippetInfo.range.getStartPosition());
525
- SnippetController2.get(this.editor)?.insert(completion.snippetInfo.snippet);
+ SnippetController2.get(this.editor)?.insert(completion.snippetInfo.snippet, { undoStopBefore: false });
526
} else {
527
this.editor.executeEdits(
528
'inlineSuggestion.accept',
0 commit comments