Automatically apply skeleton snippets to certain filetypes if configured

This commit is contained in:
2025-08-26 03:39:00 +02:00
parent 0dc1eeaaf5
commit 6491093ae3
4 changed files with 54 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
snippet _skeleton Create initial diary entry
= `strftime("%-d. %b")`: ${1:summary} =
%% `strftime("%Y-%m-%d")`
${0}
snippet xdia Create initial diary entry
= `strftime("%-d. %b")`: ${1:summary} (xdia) =
%% `strftime("%Y-%m-%d")`
${0}
snippet xtodo Create a new todo
* [ ] ${0}

View File

@@ -1,10 +1,10 @@
snippet xscript Create initial skeleton
snippet _skeleton Create initial skeleton
<script setup lang="ts">
${1}
${0}${1}
</script>
<template>
${2:<div>$3</div>}
<${2:div}>$3</$2>
</template>
snippet xpagemeta Add page meta