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
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,8 @@ export const CTX_INLINE_CHAT_FOCUSED = new RawContextKey<boolean>('inlineChatFoc
124
124
exportconstCTX_INLINE_CHAT_EMPTY=newRawContextKey<boolean>('inlineChatEmpty',false,localize('inlineChatEmpty',"Whether the interactive editor input is empty"));
125
125
exportconstCTX_INLINE_CHAT_INNER_CURSOR_FIRST=newRawContextKey<boolean>('inlineChatInnerCursorFirst',false,localize('inlineChatInnerCursorFirst',"Whether the cursor of the iteractive editor input is on the first line"));
126
126
exportconstCTX_INLINE_CHAT_INNER_CURSOR_LAST=newRawContextKey<boolean>('inlineChatInnerCursorLast',false,localize('inlineChatInnerCursorLast',"Whether the cursor of the iteractive editor input is on the last line"));
127
+
exportconstCTX_INLINE_CHAT_INNER_CURSOR_START=newRawContextKey<boolean>('inlineChatInnerCursorStart',false,localize('inlineChatInnerCursorStart',"Whether the cursor of the iteractive editor input is on the start of the input"));
128
+
exportconstCTX_INLINE_CHAT_INNER_CURSOR_END=newRawContextKey<boolean>('inlineChatInnerCursorEnd',false,localize('inlineChatInnerCursorEnd',"Whether the cursor of the iteractive editor input is on the end of the input"));
127
129
exportconstCTX_INLINE_CHAT_MESSAGE_CROP_STATE=newRawContextKey<'cropped'|'not_cropped'|'expanded'>('inlineChatMarkdownMessageCropState','not_cropped',localize('inlineChatMarkdownMessageCropState',"Whether the interactive editor message is cropped, not cropped or expanded"));
128
130
exportconstCTX_INLINE_CHAT_OUTER_CURSOR_POSITION=newRawContextKey<'above'|'below'|''>('inlineChatOuterCursorPosition','',localize('inlineChatOuterCursorPosition',"Whether the cursor of the outer editor is above or below the interactive editor input"));
129
131
exportconstCTX_INLINE_CHAT_HAS_ACTIVE_REQUEST=newRawContextKey<boolean>('inlineChatHasActiveRequest',false,localize('inlineChatHasActiveRequest',"Whether interactive editor has an active request"));
0 commit comments