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 @@ -8,6 +8,7 @@
- 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>).
- Fix columns2 and columns3 snippets leaving `:::` in the document (<https://github.com/quarto-dev/quarto/pull/899>).
- Add fragment snippet (<https://github.com/quarto-dev/quarto/pull/901>).

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

Expand Down
5 changes: 5 additions & 0 deletions apps/vscode/snippets/quarto.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@
"body": ["::: {.${1:class}}", "${TM_SELECTED_TEXT}$0", ":::"],
"description": "Insert div block"
},
"Insert fragment block": {
"prefix": "fragment",
"body": ["::: {.fragment}", "${TM_SELECTED_TEXT}$0", ":::"],
"description": "Insert fragment block"
},
"Insert span": {
"prefix": "span",
"body": "[${TM_SELECTED_TEXT:${1:text}}]{.${2:class}}$0",
Expand Down