commit 4846ee65d89a65d365f215b1a5a8e4f9f60edf23
parent dc8ef1e6720f20351e7430c3f774a694df4c56d3
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Wed, 31 Jul 2019 16:56:58 +0200
vim: more snippets
Former-commit-id: 87e0c1523119e3095b45584c8b04f13805034e9e
Diffstat:
2 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/vim/ultisnips/markdown.snippets b/vim/ultisnips/markdown.snippets
@@ -0,0 +1,9 @@
+snippet post "New post" b
+---
+layout: post
+title: "${1:Title}"
+author: zeroalpha
+---
+
+$0
+endsnippet
diff --git a/vim/ultisnips/snippets.snippets b/vim/ultisnips/snippets.snippets
@@ -0,0 +1,5 @@
+snippet skel "Snippet skeleton" b
+snippet ${1:name} "${2:Description}" ${3:b,w,i,A}
+${4:contents}
+`echo endsnippet`
+endsnippet