@@ -39,7 +39,8 @@ registerAction2(class extends NotebookAction {
39
39
group : 'navigation' ,
40
40
order : 1 ,
41
41
when : CTX_NOTEBOOK_CHAT_HAS_ACTIVE_REQUEST . negate ( )
42
- }
42
+ } ,
43
+ f1 : false
43
44
} ) ;
44
45
}
45
46
@@ -64,7 +65,8 @@ registerAction2(class extends NotebookCellAction {
64
65
) ,
65
66
weight : KeybindingWeight . EditorCore + 7 ,
66
67
primary : KeyMod . CtrlCmd | KeyCode . UpArrow
67
- }
68
+ } ,
69
+ f1 : false
68
70
} ) ;
69
71
}
70
72
@@ -105,7 +107,8 @@ registerAction2(class extends NotebookAction {
105
107
) ,
106
108
weight : KeybindingWeight . EditorCore + 7 ,
107
109
primary : KeyMod . CtrlCmd | KeyCode . DownArrow
108
- }
110
+ } ,
111
+ f1 : false
109
112
} ) ;
110
113
}
111
114
@@ -134,7 +137,8 @@ registerAction2(class extends NotebookCellAction {
134
137
) ,
135
138
weight : KeybindingWeight . EditorCore + 7 ,
136
139
primary : KeyMod . CtrlCmd | KeyCode . UpArrow
137
- }
140
+ } ,
141
+ f1 : false
138
142
} ) ;
139
143
}
140
144
@@ -164,7 +168,8 @@ registerAction2(class extends NotebookCellAction {
164
168
) ,
165
169
weight : KeybindingWeight . EditorCore + 7 ,
166
170
primary : KeyMod . CtrlCmd | KeyCode . DownArrow
167
- }
171
+ } ,
172
+ f1 : false
168
173
} ) ;
169
174
}
170
175
@@ -186,7 +191,8 @@ registerAction2(class extends NotebookAction {
186
191
group : 'navigation' ,
187
192
order : 1 ,
188
193
when : CTX_NOTEBOOK_CHAT_HAS_ACTIVE_REQUEST
189
- }
194
+ } ,
195
+ f1 : false
190
196
} ) ;
191
197
}
192
198
@@ -206,7 +212,8 @@ registerAction2(class extends NotebookAction {
206
212
id : MENU_CELL_CHAT_WIDGET ,
207
213
group : 'navigation' ,
208
214
order : 2
209
- }
215
+ } ,
216
+ f1 : false
210
217
} ) ;
211
218
}
212
219
@@ -253,7 +260,8 @@ registerAction2(class extends NotebookAction {
253
260
order : 0 ,
254
261
when : CTX_INLINE_CHAT_RESPONSE_TYPES . notEqualsTo ( InlineChatResponseTypes . OnlyMessages ) ,
255
262
}
256
- ]
263
+ ] ,
264
+ f1 : false
257
265
} ) ;
258
266
}
259
267
@@ -278,7 +286,8 @@ registerAction2(class extends NotebookAction {
278
286
id : MENU_CELL_CHAT_WIDGET_STATUS ,
279
287
group : 'main' ,
280
288
order : 1
281
- }
289
+ } ,
290
+ f1 : false
282
291
} ) ;
283
292
}
284
293
@@ -298,7 +307,8 @@ registerAction2(class extends NotebookAction {
298
307
group : 'inline' ,
299
308
order : 1 ,
300
309
when : CTX_INLINE_CHAT_LAST_RESPONSE_TYPE . notEqualsTo ( undefined ) ,
301
- }
310
+ } ,
311
+ f1 : false
302
312
} ) ;
303
313
}
304
314
@@ -318,7 +328,8 @@ registerAction2(class extends NotebookAction {
318
328
group : 'inline' ,
319
329
order : 2 ,
320
330
when : CTX_INLINE_CHAT_LAST_RESPONSE_TYPE . notEqualsTo ( undefined ) ,
321
- }
331
+ } ,
332
+ f1 : false
322
333
} ) ;
323
334
}
324
335
@@ -338,7 +349,8 @@ registerAction2(class extends NotebookAction {
338
349
group : 'inline' ,
339
350
order : 3 ,
340
351
when : CTX_INLINE_CHAT_LAST_RESPONSE_TYPE . notEqualsTo ( undefined ) ,
341
- }
352
+ } ,
353
+ f1 : false
342
354
} ) ;
343
355
}
344
356
@@ -535,6 +547,7 @@ registerAction2(class extends NotebookAction {
535
547
weight : KeybindingWeight . WorkbenchContrib
536
548
}
537
549
] ,
550
+ f1 : false
538
551
} ) ;
539
552
}
540
553
@@ -558,6 +571,7 @@ registerAction2(class extends NotebookAction {
558
571
weight : KeybindingWeight . WorkbenchContrib
559
572
}
560
573
] ,
574
+ f1 : false
561
575
} ) ;
562
576
}
563
577
@@ -581,6 +595,7 @@ registerAction2(class extends NotebookAction {
581
595
weight : KeybindingWeight . WorkbenchContrib
582
596
}
583
597
] ,
598
+ f1 : false
584
599
} ) ;
585
600
}
586
601
@@ -600,7 +615,8 @@ registerAction2(class extends NotebookAction {
600
615
when : ContextKeyExpr . and ( CTX_NOTEBOOK_CELL_CHAT_FOCUSED , CTX_INLINE_CHAT_FOCUSED ) ,
601
616
weight : KeybindingWeight . EditorCore + 10 ,
602
617
primary : KeyCode . UpArrow ,
603
- }
618
+ } ,
619
+ f1 : false
604
620
} ) ;
605
621
}
606
622
@@ -620,7 +636,8 @@ registerAction2(class extends NotebookAction {
620
636
when : ContextKeyExpr . and ( CTX_NOTEBOOK_CELL_CHAT_FOCUSED , CTX_INLINE_CHAT_FOCUSED ) ,
621
637
weight : KeybindingWeight . EditorCore + 10 ,
622
638
primary : KeyCode . DownArrow
623
- }
639
+ } ,
640
+ f1 : false
624
641
} ) ;
625
642
}
626
643
@@ -646,7 +663,8 @@ registerAction2(class extends NotebookCellAction {
646
663
NOTEBOOK_CELL_GENERATED_BY_CHAT ,
647
664
ContextKeyExpr . equals ( `config.${ NotebookSetting . cellChat } ` , true )
648
665
)
649
- }
666
+ } ,
667
+ f1 : false
650
668
} ) ;
651
669
}
652
670
0 commit comments