From 7050be1fc736a70b760d986aa0b478b0e3dd6915 Mon Sep 17 00:00:00 2001 From: elliot Date: Wed, 18 Feb 2026 14:03:08 -0500 Subject: [PATCH 1/4] Change command titles with "new" to be consistent with other language commands --- apps/vscode/package.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/vscode/package.json b/apps/vscode/package.json index 78c0d9d3..60e0d1ae 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", "category": "Quarto" }, { @@ -232,12 +232,12 @@ }, { "command": "quarto.newPresentation", - "title": "New Presentation", + "title": "New Quarto Presentation", "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.", "", From 84e6d3125c063968782b90741b3617d8a7799508 Mon Sep 17 00:00:00 2001 From: elliot Date: Wed, 18 Feb 2026 14:11:54 -0500 Subject: [PATCH 2/4] Add changelog entry --- apps/vscode/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/vscode/CHANGELOG.md b/apps/vscode/CHANGELOG.md index 1c1cefac..742ff0f7 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 (). +- Change the title of commands to "New Quarto Document", "New Quarto Notebook (ipynb)", and "New Quarto Presentation" () ## 1.129.0 (Release on 2026-01-29) From 8c974fb5ca9d785e44320ad6247ba9d1c21f96cc Mon Sep 17 00:00:00 2001 From: elliot Date: Wed, 18 Feb 2026 14:14:56 -0500 Subject: [PATCH 3/4] Change commands titles to include explicit file extensions --- apps/vscode/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/vscode/package.json b/apps/vscode/package.json index 60e0d1ae..a3bcb67e 100644 --- a/apps/vscode/package.json +++ b/apps/vscode/package.json @@ -222,7 +222,7 @@ "commands": [ { "command": "quarto.newDocument", - "title": "New Quarto Document", + "title": "New Quarto Document (qmd)", "category": "Quarto" }, { @@ -232,7 +232,7 @@ }, { "command": "quarto.newPresentation", - "title": "New Quarto Presentation", + "title": "New Quarto Presentation (qmd)", "category": "Quarto" }, { From 40beb48a9c09b48375426b435cc132f4e4f8f1db Mon Sep 17 00:00:00 2001 From: Elliot Date: Wed, 18 Feb 2026 15:09:25 -0500 Subject: [PATCH 4/4] Update apps/vscode/CHANGELOG.md Co-authored-by: Julia Silge --- apps/vscode/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/vscode/CHANGELOG.md b/apps/vscode/CHANGELOG.md index 742ff0f7..ef8bfcbb 100644 --- a/apps/vscode/CHANGELOG.md +++ b/apps/vscode/CHANGELOG.md @@ -3,7 +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 (). -- Change the title of commands to "New Quarto Document", "New Quarto Notebook (ipynb)", and "New Quarto Presentation" () +- 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)