From 0cd26beb536923a89abb42baa84fe9b5db1b08ea Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 15:55:30 +0000 Subject: [PATCH 1/3] Initial plan From d7273083b20aa2b623f83751c78d65cdcd2171ac Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 16:01:43 +0000 Subject: [PATCH 2/3] Initial plan for making issue links copyable Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com> --- src/@types/vscode.proposed.chatParticipantAdditions.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/@types/vscode.proposed.chatParticipantAdditions.d.ts b/src/@types/vscode.proposed.chatParticipantAdditions.d.ts index 71520fa1ec..aa7001a3d2 100644 --- a/src/@types/vscode.proposed.chatParticipantAdditions.d.ts +++ b/src/@types/vscode.proposed.chatParticipantAdditions.d.ts @@ -105,6 +105,7 @@ declare module 'vscode' { isComplete?: boolean; toolSpecificData?: ChatTerminalToolInvocationData; fromSubAgent?: boolean; + presentation?: 'hidden' | 'hiddenAfterComplete' | undefined; constructor(toolName: string, toolCallId: string, isError?: boolean); } From 5fdd42e14ea26276afa4d516636941f7f12e7480 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 16:03:27 +0000 Subject: [PATCH 3/3] Make issue number link copyable by adding user-select: text Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com> --- webviews/editorWebview/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webviews/editorWebview/index.css b/webviews/editorWebview/index.css index 4716e0152e..de2da14d03 100644 --- a/webviews/editorWebview/index.css +++ b/webviews/editorWebview/index.css @@ -501,6 +501,10 @@ body button .icon { margin-right: 6px; } +.overview-title h2 a { + user-select: text; +} + .overview-title textarea { min-height: 50px; }