diff --git a/apps/vscode/CHANGELOG.md b/apps/vscode/CHANGELOG.md index 1615a813..a1ed49d0 100644 --- a/apps/vscode/CHANGELOG.md +++ b/apps/vscode/CHANGELOG.md @@ -8,6 +8,7 @@ - Fixed cell formatting sometimes deleting code at the end of the cell (). - Removed visual/source toggle button from Positron editor action bar. You can still switch between editing modes using the command palette or context menu (). - Fix columns2 and columns3 snippets leaving `:::` in the document (). +- Add fragment snippet (). ## 1.128.0 (Release on 2026-01-08) diff --git a/apps/vscode/snippets/quarto.code-snippets b/apps/vscode/snippets/quarto.code-snippets index f54f98ed..319d0dcc 100644 --- a/apps/vscode/snippets/quarto.code-snippets +++ b/apps/vscode/snippets/quarto.code-snippets @@ -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",