You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/inlineChat/common/inlineChat.ts
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,8 @@ export const CTX_INLINE_CHAT_HAS_STASHED_SESSION = new RawContextKey<boolean>('i
121
121
exportconstCTX_INLINE_CHAT_SHOWING_DIFF=newRawContextKey<boolean>('inlineChatDiff',false,localize('inlineChatDiff',"Whether interactive editor show diffs for changes"));
122
122
exportconstCTX_INLINE_CHAT_LAST_RESPONSE_TYPE=newRawContextKey<InlineChatResponseType|undefined>('inlineChatLastResponseType',undefined,localize('inlineChatResponseType',"What type was the last response of the current interactive editor session"));
123
123
exportconstCTX_INLINE_CHAT_RESPONSE_TYPES=newRawContextKey<InlineChateResponseTypes|undefined>('inlineChatResponseTypes',undefined,localize('inlineChatResponseTypes',"What type was the responses have been receieved"));
124
-
exportconstCTX_INLINE_CHAT_DID_EDIT=newRawContextKey<boolean>('inlineChatDidEdit',false,localize('inlineChatDidEdit',"Whether interactive editor did change any code"));
124
+
exportconstCTX_INLINE_CHAT_DID_EDIT=newRawContextKey<boolean>('inlineChatDidEdit',undefined,localize('inlineChatDidEdit',"Whether interactive editor did change any code"));
125
+
exportconstCTX_INLINE_CHAT_USER_DID_EDIT=newRawContextKey<boolean>('inlineChatUserDidEdit',undefined,localize('inlineChatUserDidEdit',"Whether the user did changes ontop of the inline chat"));
125
126
exportconstCTX_INLINE_CHAT_LAST_FEEDBACK=newRawContextKey<'unhelpful'|'helpful'|''>('inlineChatLastFeedbackKind','',localize('inlineChatLastFeedbackKind',"The last kind of feedback that was provided"));
126
127
exportconstCTX_INLINE_CHAT_DOCUMENT_CHANGED=newRawContextKey<boolean>('inlineChatDocumentChanged',false,localize('inlineChatDocumentChanged',"Whether the document has changed concurrently"));
0 commit comments