Skip to content

Commit 71a06c4

Browse files
vezworkjuliasilge
andauthored
Change command titles with "new" to be consistent with other language… (#920)
* Change command titles with "new" to be consistent with other language commands * Add changelog entry * Change commands titles to include explicit file extensions * Update apps/vscode/CHANGELOG.md Co-authored-by: Julia Silge <julia.silge@gmail.com> --------- Co-authored-by: Julia Silge <julia.silge@gmail.com>
1 parent ace5ea4 commit 71a06c4

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

apps/vscode/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 1.130.0 (Unreleased)
44

55
- Fixed a bug where a parse error in one chunk meant you could not perform statement execution in another chunk (<https://github.com/quarto-dev/quarto/pull/914>).
6+
- Changed the title of commands to "New Quarto Document", "New Quarto Notebook (ipynb)", and "New Quarto Presentation" (<https://github.com/quarto-dev/quarto/pull/920>).
67

78
## 1.129.0 (Release on 2026-01-29)
89

apps/vscode/package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@
222222
"commands": [
223223
{
224224
"command": "quarto.newDocument",
225-
"title": "New Document",
225+
"title": "New Quarto Document (qmd)",
226226
"category": "Quarto"
227227
},
228228
{
@@ -232,12 +232,12 @@
232232
},
233233
{
234234
"command": "quarto.newPresentation",
235-
"title": "New Presentation",
235+
"title": "New Quarto Presentation (qmd)",
236236
"category": "Quarto"
237237
},
238238
{
239239
"command": "quarto.newNotebook",
240-
"title": "New Notebook (ipynb)",
240+
"title": "New Quarto Notebook (ipynb)",
241241
"category": "Quarto"
242242
},
243243
{
@@ -404,7 +404,7 @@
404404
},
405405
{
406406
"command": "quarto.walkthrough.newDocument",
407-
"title": "New Document (qmd)",
407+
"title": "New Quarto Document (qmd)",
408408
"category": "Quarto"
409409
},
410410
{
@@ -1308,7 +1308,11 @@
13081308
},
13091309
"quarto.symbols.exportToWorkspace": {
13101310
"type": "string",
1311-
"enum": ["default", "all", "none"],
1311+
"enum": [
1312+
"default",
1313+
"all",
1314+
"none"
1315+
],
13121316
"enumDescriptions": [
13131317
"Depends on the project type: `\"none\"` in R packages, `\"all\"` otherwise.",
13141318
"",

0 commit comments

Comments
 (0)