summaryrefslogtreecommitdiff
path: root/.vim/snippets/vim.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/vim.snippets
parentf179a5690ee59df214b4f3a90049b9bcdfce8712 (diff)
Remove snipMate
Diffstat (limited to '.vim/snippets/vim.snippets')
-rw-r--r--.vim/snippets/vim.snippets32
1 files changed, 0 insertions, 32 deletions
diff --git a/.vim/snippets/vim.snippets b/.vim/snippets/vim.snippets
deleted file mode 100644
index 64e7807..0000000
--- a/.vim/snippets/vim.snippets
+++ /dev/null
@@ -1,32 +0,0 @@
-snippet header
- " File: ${1:`expand('%:t')`}
- " Author: ${2:`g:snips_author`}
- " Description: ${3}
- ${4:" Last Modified: `strftime("%B %d, %Y")`}
-snippet guard
- if exists('${1:did_`Filename()`}') || &cp${2: || version < 700}
- finish
- endif
- let $1 = 1${3}
-snippet f
- fun ${1:function_name}(${2})
- ${3:" code}
- endf
-snippet for
- for ${1:needle} in ${2:haystack}
- ${3:" code}
- endfor
-snippet wh
- while ${1:condition}
- ${2:" code}
- endw
-snippet if
- if ${1:condition}
- ${2:" code}
- endif
-snippet ife
- if ${1:condition}
- ${2}
- else
- ${3}
- endif