aboutsummaryrefslogtreecommitdiff
path: root/vim.dot.link/snippets/vim.snippets
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-02-16 14:02:48 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-02-16 14:02:48 -0300
commitfca5489ba6e80ce08f1b1e3bfeb582b916eb1194 (patch)
tree431732d0101611d066ea84aa30cdc1952d1c077d /vim.dot.link/snippets/vim.snippets
parent5e8c17ed00a8df3c12d459fb9d2634b3a28773ed (diff)
downloadvim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.gz
vim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.bz2
Major cleanup
Diffstat (limited to 'vim.dot.link/snippets/vim.snippets')
-rw-r--r--vim.dot.link/snippets/vim.snippets32
1 files changed, 0 insertions, 32 deletions
diff --git a/vim.dot.link/snippets/vim.snippets b/vim.dot.link/snippets/vim.snippets
deleted file mode 100644
index 64e7807..0000000
--- a/vim.dot.link/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