We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
true
1 parent ccc9961 commit 4268e46Copy full SHA for 4268e46
src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.ts
@@ -329,7 +329,8 @@ class CodeActionOnSaveParticipant implements IStoredFileWorkingCopySaveParticipa
329
if (context.reason === SaveReason.AUTO) {
330
// currently this won't happen, as vs/editor/contrib/codeAction/browser/codeAction.ts L#104 filters out codeactions on autosave. Just future-proofing
331
// ? notebook CodeActions on autosave seems dangerous (perf-wise)
332
- saveTrigger = 'always';
+ // saveTrigger = 'always'; // TODO@Yoyokrazy, support during debt
333
+ return undefined;
334
} else if (context.reason === SaveReason.EXPLICIT) {
335
saveTrigger = 'explicit';
336
} else {
0 commit comments