diff --git a/apps/vscode/CHANGELOG.md b/apps/vscode/CHANGELOG.md index 3d48dc13..a17e0d8f 100644 --- a/apps/vscode/CHANGELOG.md +++ b/apps/vscode/CHANGELOG.md @@ -6,6 +6,7 @@ - In Positron, Jupyter Notebooks (`.ipynb`) are now exported via the new unified "Export" command, rather than the "Quarto: Convert to .qmd" command (). - Fixed a bug where formatting a code cell stripped leading empty lines. Leading empty lines between option directives and code are now preserved, and two or more leading empty lines are collapsed to one (). - Fixed a bug where IPython magics (`%`, `%%`) and shell escapes (`!`) in Python code cells produced spurious diagnostics from language servers like Pyrefly and Ruff. These lines are now commented out in the virtual document handed to language servers (). +- The "Render Document" command is now available in the Positron Notebook Editor (). ## 1.133.0 (Release on 2026-06-03) diff --git a/apps/vscode/package.json b/apps/vscode/package.json index bcd715d5..33a18b7a 100644 --- a/apps/vscode/package.json +++ b/apps/vscode/package.json @@ -798,7 +798,7 @@ }, { "command": "quarto.renderDocument", - "when": "editorLangId == quarto || editorLangId == markdown || activeEditor == 'workbench.editor.notebook' || activeCustomEditorId == 'quarto.visualEditor' || quartoRenderDocActive" + "when": "editorLangId == quarto || editorLangId == markdown || resourceExtname == .ipynb || activeEditor == 'workbench.editor.notebook' || activeCustomEditorId == 'quarto.visualEditor' || quartoRenderDocActive" }, { "command": "quarto.previewScript",