summaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2015-11-21 23:34:32 +0100
committerGravatar Tom Willemse2015-11-21 23:34:32 +0100
commitd311cffd164960e25553730327c497eb8211357c (patch)
tree72ffa75855ac82630dffe959fec29548b968c088 /emacs
parentd41afa89fd54afac98d13db52815a4147cfd43af (diff)
downloaddotfiles-d311cffd164960e25553730327c497eb8211357c.tar.gz
dotfiles-d311cffd164960e25553730327c497eb8211357c.zip
Add twig-mode snippets
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/snippets/twig-mode/blk7
-rw-r--r--emacs/.emacs.d/snippets/twig-mode/ext5
-rw-r--r--emacs/.emacs.d/snippets/twig-mode/if7
-rw-r--r--emacs/.emacs.d/snippets/twig-mode/ife9
-rw-r--r--emacs/.emacs.d/snippets/twig-mode/mac7
5 files changed, 35 insertions, 0 deletions
diff --git a/emacs/.emacs.d/snippets/twig-mode/blk b/emacs/.emacs.d/snippets/twig-mode/blk
new file mode 100644
index 0000000..bb100a3
--- /dev/null
+++ b/emacs/.emacs.d/snippets/twig-mode/blk
@@ -0,0 +1,7 @@
+# -*- mode: snippet; require-final-newline: nil -*-
+# name: block
+# key: blk
+# --
+{% block $1 %}
+ $0
+{% endblock %} \ No newline at end of file
diff --git a/emacs/.emacs.d/snippets/twig-mode/ext b/emacs/.emacs.d/snippets/twig-mode/ext
new file mode 100644
index 0000000..9785aed
--- /dev/null
+++ b/emacs/.emacs.d/snippets/twig-mode/ext
@@ -0,0 +1,5 @@
+# -*- mode: snippet; require-final-newline: nil -*-
+# name: extends
+# key: ext
+# --
+{% extends "$0" %} \ No newline at end of file
diff --git a/emacs/.emacs.d/snippets/twig-mode/if b/emacs/.emacs.d/snippets/twig-mode/if
new file mode 100644
index 0000000..a9385d9
--- /dev/null
+++ b/emacs/.emacs.d/snippets/twig-mode/if
@@ -0,0 +1,7 @@
+# -*- mode: snippet; require-final-newline: nil -*-
+# name: if
+# key: if
+# --
+{% if $1 %}
+ $0
+{% endif %} \ No newline at end of file
diff --git a/emacs/.emacs.d/snippets/twig-mode/ife b/emacs/.emacs.d/snippets/twig-mode/ife
new file mode 100644
index 0000000..a4d18f3
--- /dev/null
+++ b/emacs/.emacs.d/snippets/twig-mode/ife
@@ -0,0 +1,9 @@
+# -*- mode: snippet; require-final-newline: nil -*-
+# name: if...else
+# key: ife
+# --
+{% if $1 %}
+ $0
+{% else %}
+
+{% endif %} \ No newline at end of file
diff --git a/emacs/.emacs.d/snippets/twig-mode/mac b/emacs/.emacs.d/snippets/twig-mode/mac
new file mode 100644
index 0000000..d4e480a
--- /dev/null
+++ b/emacs/.emacs.d/snippets/twig-mode/mac
@@ -0,0 +1,7 @@
+# -*- mode: snippet; require-final-newline: nil -*-
+# name: macro
+# key: mac
+# --
+{% macro ${1:name}(${2:args}) %}
+ $0
+{% endmacro %} \ No newline at end of file