Skip to content

Commit a9bcdfb

Browse files
authored
chore - support blockOnResponse for inine chat API'ish command (microsoft#281491)
1 parent ada0bb1 commit a9bcdfb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/vs/workbench/api/common/extHostApiCommands.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,7 @@ const newCommands: ApiCommand[] = [
550550
attachments: v.attachments,
551551
autoSend: v.autoSend,
552552
position: v.position ? typeConverters.Position.from(v.position) : undefined,
553+
blockOnResponse: v.blockOnResponse
553554
};
554555
})],
555556
ApiCommandResult.Void
@@ -563,6 +564,7 @@ type InlineChatEditorApiArg = {
563564
attachments?: vscode.Uri[];
564565
autoSend?: boolean;
565566
position?: vscode.Position;
567+
blockOnResponse?: boolean;
566568
};
567569

568570
type InlineChatRunOptions = {
@@ -572,6 +574,7 @@ type InlineChatRunOptions = {
572574
attachments?: URI[];
573575
autoSend?: boolean;
574576
position?: IPosition;
577+
blockOnResponse?: boolean;
575578
};
576579

577580
//#endregion

0 commit comments

Comments
 (0)