Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 (<https://github.com/quarto-dev/quarto/pull/914>).
- 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>).

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

Expand Down
14 changes: 9 additions & 5 deletions apps/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
"commands": [
{
"command": "quarto.newDocument",
"title": "New Document",
"title": "New Quarto Document (qmd)",
"category": "Quarto"
},
{
Expand All @@ -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"
},
{
Expand Down Expand Up @@ -404,7 +404,7 @@
},
{
"command": "quarto.walkthrough.newDocument",
"title": "New Document (qmd)",
"title": "New Quarto Document (qmd)",
"category": "Quarto"
},
{
Expand Down Expand Up @@ -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.",
"",
Expand Down