From 69463dbb35c2e771c21f6766fed02941ca67fd9d Mon Sep 17 00:00:00 2001 From: Florian Oswald Date: Sat, 24 Jan 2026 11:12:07 +0100 Subject: [PATCH 1/2] added fragment snippet --- apps/vscode/snippets/quarto.code-snippets | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/vscode/snippets/quarto.code-snippets b/apps/vscode/snippets/quarto.code-snippets index 14af32d9..77aaa3c5 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", From 093067c1980fe8f1d7ca73b2c7a9480a9c6ab53e Mon Sep 17 00:00:00 2001 From: elliot Date: Tue, 27 Jan 2026 16:14:57 -0500 Subject: [PATCH 2/2] Add changelog entry --- apps/vscode/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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)