summaryrefslogtreecommitdiffstats
path: root/.vim/ftplugin
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-05-01 22:22:41 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-05-01 22:22:41 +0200
commit8bcb0213177a6d2cef8b6b6728076749ce36a22b (patch)
treea106b112e7fc4780ce90367c0744b6e5625ea40b /.vim/ftplugin
parentaaf5d32b0688d1064d46bf7a74775a3ab1aa8830 (diff)
downloaddotfiles-8bcb0213177a6d2cef8b6b6728076749ce36a22b.tar.gz
dotfiles-8bcb0213177a6d2cef8b6b6728076749ce36a22b.tar.xz
vim: switch ti ultisnips; update some plugins
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to '.vim/ftplugin')
-rw-r--r--.vim/ftplugin/html_snip_helper.vim10
1 files changed, 0 insertions, 10 deletions
diff --git a/.vim/ftplugin/html_snip_helper.vim b/.vim/ftplugin/html_snip_helper.vim
deleted file mode 100644
index 2e54570..0000000
--- a/.vim/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