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/interactiveEditor/common/interactiveEditor.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ export const CTX_INTERACTIVE_EDITOR_INNER_CURSOR_LAST = new RawContextKey<boolea
110
110
exportconstCTX_INTERACTIVE_EDITOR_MESSAGE_CROP_STATE=newRawContextKey<'cropped'|'not_cropped'|'expanded'>('interactiveEditorMarkdownMessageCropState','not_cropped',localize('interactiveEditorMarkdownMessageCropState',"Whether the interactive editor message is cropped, not cropped or expanded"));
111
111
exportconstCTX_INTERACTIVE_EDITOR_OUTER_CURSOR_POSITION=newRawContextKey<'above'|'below'|''>('interactiveEditorOuterCursorPosition','',localize('interactiveEditorOuterCursorPosition',"Whether the cursor of the outer editor is above or below the interactive editor input"));
112
112
exportconstCTX_INTERACTIVE_EDITOR_HAS_ACTIVE_REQUEST=newRawContextKey<boolean>('interactiveEditorHasActiveRequest',false,localize('interactiveEditorHasActiveRequest',"Whether interactive editor has an active request"));
113
-
exportconstCTX_INTERACTIVE_EDITOR_INLNE_DIFF=newRawContextKey<boolean>('interactiveEditorInlineDiff',false,localize('interactiveEditorInlineDiff',"Whether interactive editor show inline diffs for changes"));
113
+
exportconstCTX_INTERACTIVE_EDITOR_SHOWING_DIFF=newRawContextKey<boolean>('interactiveEditorDiff',false,localize('interactiveEditorDiff',"Whether interactive editor show diffs for changes"));
114
114
exportconstCTX_INTERACTIVE_EDITOR_LAST_RESPONSE_TYPE=newRawContextKey<InteractiveEditorResponseType|undefined>('interactiveEditorLastResponseType',undefined,localize('interactiveEditorResponseType',"What type was the last response of the current interactive editor session"));
115
115
exportconstCTX_INTERACTIVE_EDITOR_DID_EDIT=newRawContextKey<boolean>('interactiveEditorDidEdit',false,localize('interactiveEditorDidEdit',"Whether interactive editor did change any code"));
116
116
exportconstCTX_INTERACTIVE_EDITOR_LAST_FEEDBACK=newRawContextKey<'unhelpful'|'helpful'|''>('interactiveEditorLastFeedbackKind','',localize('interactiveEditorLastFeedbackKind',"The last kind of feedback that was provided"));
0 commit comments