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

@@ -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