summaryrefslogtreecommitdiff
path: root/snippets/jade.snippets
diff options
context:
space:
mode:
authorVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
committerVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
commitf1eabbaa1b4ff1836d0ee8335b31d009203f3775 (patch)
treebbe77eacaef8ab8a5999e517c3006973c9e3e44c /snippets/jade.snippets
parent823302458ec6c53455a3f34674415c43ce6a3187 (diff)
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'snippets/jade.snippets')
-rw-r--r--snippets/jade.snippets18
1 files changed, 0 insertions, 18 deletions
diff --git a/snippets/jade.snippets b/snippets/jade.snippets
deleted file mode 100644
index 55f0af7..0000000
--- a/snippets/jade.snippets
+++ /dev/null
@@ -1,18 +0,0 @@
-# Angular HTML
-snippet rep
- div(ng-repeat='${1} in ${2}')
-
-snippet repf
- div(ng-repeat='${1} in ${2}' | ${3})
-
-snippet repi
- div(ng-repeat='${1} in ${2}' track by $index)
-
-snippet hide
- div(ng-hide='${1}')
-
-snippet show
- div(ng-show='${1}')
-
-snippet if
- div(ng-if='${1}')