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
markdownDescription: nls.localize('chat.commandCenter.enabled',"Controls whether the command center shows a menu for actions to control Copilot (requires {0}).",'`#window.commandCenter#`'),
138
138
default: true
139
139
},
140
+
'chat.implicitContext.enabled': {
141
+
type: 'object',
142
+
tags: ['experimental'],
143
+
description: nls.localize('chat.implicitContext.enabled',"Enables the implicit context widget for specified chat locations."),
144
+
additionalProperties: {
145
+
type: 'string',
146
+
enum: ['never','first','always'],
147
+
description: nls.localize('chat.implicitContext.value',"The value for the implicit context."),
148
+
enumDescriptions: [
149
+
nls.localize('chat.implicitContext.value.never',"Implicit context is never enabled."),
150
+
nls.localize('chat.implicitContext.value.first',"Implicit context is enabled for the first interaction."),
151
+
nls.localize('chat.implicitContext.value.always',"Implicit context is always enabled.")
152
+
]
153
+
},
154
+
default: {
155
+
'panel': 'always',
156
+
'editing-session': 'first'
157
+
}
158
+
},
140
159
'chat.editing.autoAcceptDelay': {
141
160
type: 'number',
142
161
markdownDescription: nls.localize('chat.editing.autoAcceptDelay',"Delay after which changes made by chat are automatically accepted. Values are in seconds, `0` means disabled and `100` seconds is the maximum."),
0 commit comments