Skip to content

Commit 8cb779a

Browse files
authored
separate added/removed lines (#524)
* separate added/removed lines * leave undefined
1 parent 9dd29dc commit 8cb779a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/extension/conversation/vscode-node/userActions.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,9 @@ export class UserFeedbackService implements IUserFeedbackService {
198198
hasRemainingEdits: e.action.hasRemainingEdits ? 1 : 0,
199199
isNotebook: this.notebookService.hasSupportedNotebooks(e.action.uri) ? 1 : 0,
200200
isNotebookCell: e.action.uri.scheme === Schemas.vscodeNotebookCell ? 1 : 0,
201-
lineCount: e.action.lineCount
201+
lineCount: e.action.lineCount,
202+
linesAdded: e.action.linesAdded,
203+
linesRemoved: e.action.linesRemoved,
202204
};
203205

204206
sendUserActionTelemetry(

src/extension/vscode.proposed.chatParticipantAdditions.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,8 @@ declare module 'vscode' {
487487
hasRemainingEdits: boolean;
488488
outcome: ChatEditingHunkActionOutcome;
489489
lineCount: number;
490+
linesAdded: number;
491+
linesRemoved: number;
490492
}
491493

492494
export enum ChatEditingSessionActionOutcome {

0 commit comments

Comments
 (0)