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
3 changes: 2 additions & 1 deletion apps/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
- Fixed a bug where the `autoDetectColorScheme` setting could cause equation previews to have a dark text on dark background and vice versa (<https://github.com/quarto-dev/quarto/pull/864>).
- Fixed a regression where bash cell execution does not work (<https://github.com/quarto-dev/quarto/pull/826>).
- Fixed cell formatting sometimes deleting code at the end of the cell (<https://github.com/quarto-dev/quarto/pull/754>).
- Removed visual/source toggle button from Positron editor action bar. You can still switch between editing modes using the command palette or context menu (<https://github.com/quarto-dev/quarto/pull/896>)
- Removed visual/source toggle button from Positron editor action bar. You can still switch between editing modes using the command palette or context menu (<https://github.com/quarto-dev/quarto/pull/896>).
- Fix columns2 and columns3 snippets leaving `:::` in the document (<https://github.com/quarto-dev/quarto/pull/899>).

## 1.128.0 (Release on 2026-01-08)

Expand Down
6 changes: 4 additions & 2 deletions apps/vscode/snippets/quarto.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@
"::: {.column}",
":::",

"::: <!-- end columns -->"
":::",
"<!-- end columns -->"

],
"description": "Insert two columns"
Expand All @@ -160,7 +161,8 @@
"::: {.column}",
":::",

"::: <!-- end columns -->"
":::",
"<!-- end columns -->"
],
"description": "Insert three columns"
}
Expand Down