diff options
Diffstat (limited to 'vim/bundle/vim-snippets/UltiSnips/mako.snippets')
m--------- | vim/bundle/vim-snippets | 0 | ||||
-rw-r--r-- | vim/bundle/vim-snippets/UltiSnips/mako.snippets | 92 |
2 files changed, 0 insertions, 92 deletions
diff --git a/vim/bundle/vim-snippets b/vim/bundle/vim-snippets new file mode 160000 +Subproject 15d7e5ec26ec93adee4051b6359be90a943aa38 diff --git a/vim/bundle/vim-snippets/UltiSnips/mako.snippets b/vim/bundle/vim-snippets/UltiSnips/mako.snippets deleted file mode 100644 index fb31ec8..0000000 --- a/vim/bundle/vim-snippets/UltiSnips/mako.snippets +++ /dev/null @@ -1,92 +0,0 @@ -priority -50 - -################# -# From snipmate # -################# -snippet def "definition" b -<%def name="${1:name}"> - ${2:} -</%def> -endsnippet - -snippet call "call" b -<%call expr="${1:name}"> - ${2:} -</%call> -endsnippet - -snippet doc "doc" b -<%doc> - ${1:} -</%doc> -endsnippet - -snippet text "text" b -<%text> - ${1:} -</%text> -endsnippet - -snippet for "for" b -% for ${1:i} in ${2:iter}: - ${3:} -% endfor -endsnippet - -snippet if "if " b -% if ${1:condition}: - ${2:} -% endif -endsnippet - -snippet if "if/else" b -% if ${1:condition}: - ${2:} -% else: - ${3:} -% endif -endsnippet - -snippet try "try" b -% try: - ${1:} -% except${2:}: - ${3:pass} -% endtry -endsnippet - -snippet wh "wh" b -% while ${1:}: - ${2:} -% endwhile -endsnippet - -snippet $ "$" i -${${1:}} -endsnippet - -snippet <% "<%" b -<% ${1:} %> -endsnippet - -snippet <!% "<!%" b -<!% ${1:} %> -endsnippet - -snippet inherit "inherit" b -<%inherit file="${1:filename}" /> -endsnippet - -snippet include "include" b -<%include file="${1:filename}" /> -endsnippet - -snippet namespace "namespace" b -<%namespace file="${1:name}" /> -endsnippet - -snippet page "page" b -<%page args="${1:}" /> -endsnippet - -# vim:ft=snippets: |