summaryrefslogtreecommitdiff
path: root/.vim/snippets/mako.snippets
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2021-04-26 15:08:41 +0200
committerTobias Klauser <tklauser@distanz.ch>2021-04-26 20:34:12 +0200
commit740243411e21c18bb30051b43aa0140a180fab33 (patch)
tree9cc326193c9c680faeda5356cee5d8ff364e51cb /.vim/snippets/mako.snippets
parentf179a5690ee59df214b4f3a90049b9bcdfce8712 (diff)
Remove snipMate
Diffstat (limited to '.vim/snippets/mako.snippets')
-rw-r--r--.vim/snippets/mako.snippets54
1 files changed, 0 insertions, 54 deletions
diff --git a/.vim/snippets/mako.snippets b/.vim/snippets/mako.snippets
deleted file mode 100644
index 2a0aef9..0000000
--- a/.vim/snippets/mako.snippets
+++ /dev/null
@@ -1,54 +0,0 @@
-snippet def
- <%def name="${1:name}">
- ${2:}
- </%def>
-snippet call
- <%call expr="${1:name}">
- ${2:}
- </%call>
-snippet doc
- <%doc>
- ${1:}
- </%doc>
-snippet text
- <%text>
- ${1:}
- </%text>
-snippet for
- % for ${1:i} in ${2:iter}:
- ${3:}
- % endfor
-snippet if if
- % if ${1:condition}:
- ${2:}
- % endif
-snippet if if/else
- % if ${1:condition}:
- ${2:}
- % else:
- ${3:}
- % endif
-snippet try
- % try:
- ${1:}
- % except${2:}:
- ${3:pass}
- % endtry
-snippet wh
- % while ${1:}:
- ${2:}
- % endwhile
-snippet $
- ${ ${1:} }
-snippet <%
- <% ${1:} %>
-snippet <!%
- <!% ${1:} %>
-snippet inherit
- <%inherit file="${1:filename}" />
-snippet include
- <%include file="${1:filename}" />
-snippet namespace
- <%namespace file="${1:name}" />
-snippet page
- <%page args="${1:}" />