diff --git a/apps/vscode/CHANGELOG.md b/apps/vscode/CHANGELOG.md index 1c1cefac..ef8bfcbb 100644 --- a/apps/vscode/CHANGELOG.md +++ b/apps/vscode/CHANGELOG.md @@ -3,6 +3,7 @@ ## 1.130.0 (Unreleased) - Fixed a bug where a parse error in one chunk meant you could not perform statement execution in another chunk (). +- Changed the title of commands to "New Quarto Document", "New Quarto Notebook (ipynb)", and "New Quarto Presentation" (). ## 1.129.0 (Release on 2026-01-29) diff --git a/apps/vscode/package.json b/apps/vscode/package.json index 78c0d9d3..a3bcb67e 100644 --- a/apps/vscode/package.json +++ b/apps/vscode/package.json @@ -222,7 +222,7 @@ "commands": [ { "command": "quarto.newDocument", - "title": "New Document", + "title": "New Quarto Document (qmd)", "category": "Quarto" }, { @@ -232,12 +232,12 @@ }, { "command": "quarto.newPresentation", - "title": "New Presentation", + "title": "New Quarto Presentation (qmd)", "category": "Quarto" }, { "command": "quarto.newNotebook", - "title": "New Notebook (ipynb)", + "title": "New Quarto Notebook (ipynb)", "category": "Quarto" }, { @@ -404,7 +404,7 @@ }, { "command": "quarto.walkthrough.newDocument", - "title": "New Document (qmd)", + "title": "New Quarto Document (qmd)", "category": "Quarto" }, { @@ -1308,7 +1308,11 @@ }, "quarto.symbols.exportToWorkspace": { "type": "string", - "enum": ["default", "all", "none"], + "enum": [ + "default", + "all", + "none" + ], "enumDescriptions": [ "Depends on the project type: `\"none\"` in R packages, `\"all\"` otherwise.", "",