aboutsummaryrefslogtreecommitdiff
path: root/vim.dot.link/ftplugin
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/ftplugin
parent5e8c17ed00a8df3c12d459fb9d2634b3a28773ed (diff)
downloadvim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.gz
vim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.bz2
Major cleanup
Diffstat (limited to 'vim.dot.link/ftplugin')
-rw-r--r--vim.dot.link/ftplugin/html_snip_helper.vim10
1 files changed, 0 insertions, 10 deletions
diff --git a/vim.dot.link/ftplugin/html_snip_helper.vim b/vim.dot.link/ftplugin/html_snip_helper.vim
deleted file mode 100644
index 2e54570..0000000
--- a/vim.dot.link/ftplugin/html_snip_helper.vim
+++ /dev/null
@@ -1,10 +0,0 @@
-" Helper function for (x)html snippets
-if exists('s:did_snip_helper') || &cp || !exists('loaded_snips')
- finish
-endif
-let s:did_snip_helper = 1
-
-" Automatically closes tag if in xhtml
-fun! Close()
- return stridx(&ft, 'xhtml') == -1 ? '' : ' /'
-endf