From 6ebdf728df1810b468b1580a94b837da256be218 Mon Sep 17 00:00:00 2001 From: Daniel Winkler Date: Sat, 31 Jan 2026 18:06:37 +1100 Subject: [PATCH] vv working --- snippets/quarto.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/snippets/quarto.json b/snippets/quarto.json index 5fc7453..f80c324 100644 --- a/snippets/quarto.json +++ b/snippets/quarto.json @@ -1,7 +1,17 @@ { - "Chunk": { + "R Chunk": { "prefix": "_r", - "body": "```{r}\n$1\n```", + "body": "```{r}\n$0\n```", "description": "R code block" + }, + "Chunk": { + "prefix": "_c", + "body": "```{$1}\n$0\n```", + "description": "Code block with specified language" + }, + "YAML Header": { + "prefix": "_yaml", + "body": "---\ntitle: \"$1\"\nauthor: \"$2\"\ndate: \"$3\"\nformat: html\n---\n$0", + "description": "YAML header for Quarto document" } }