Enable pasting of image attachments by default for ipynb (#166058)

Fixes https://github.com/microsoft/vscode-jupyter/issues/11987
This commit is contained in:
Matt Bierner
2022-11-10 16:46:31 -08:00
committed by GitHub
parent 8294940ac6
commit 1ccc8d438b
5 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ export function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(notebookImagePasteSetup());
const enabled = vscode.workspace.getConfiguration('ipynb').get('experimental.pasteImages.enabled', false);
const enabled = vscode.workspace.getConfiguration('ipynb').get('pasteImagesAsAttachments.enabled', false);
if (enabled) {
const cleaner = new AttachmentCleaner();
context.subscriptions.push(cleaner);