summaryrefslogtreecommitdiffstats
path: root/.vim/after
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/after
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/after')
-rw-r--r--.vim/after/plugin/snipMate.vim24
1 files changed, 0 insertions, 24 deletions
diff --git a/.vim/after/plugin/snipMate.vim b/.vim/after/plugin/snipMate.vim
deleted file mode 100644
index 1d995ef..0000000
--- a/.vim/after/plugin/snipMate.vim
+++ /dev/null
@@ -1,24 +0,0 @@
-" These are the mappings for snipMate.vim. Putting it here ensures that it
-" will be mapped after other plugins such as supertab.vim.
-if exists('s:did_snips_mappings') || &cp || version < 700
- finish
-endif
-let s:did_snips_mappings = 1
-
-ino <silent> <tab> <c-r>=TriggerSnippet()<cr>
-snor <silent> <tab> <esc>i<right><c-r>=TriggerSnippet()<cr>
-ino <silent> <c-r><tab> <c-r>=ShowAvailableSnips()<cr>
-snor <bs> b<bs>
-snor ' b<bs>'
-snor <right> <esc>a
-snor <left> <esc>bi
-
-" By default load snippets in snippets_dir
-if empty(snippets_dir)
- finish
-endif
-
-call GetSnippets(snippets_dir, '_') " Get global snippets
-
-au FileType * if &ft != 'help' | call GetSnippets(snippets_dir, &ft) | endif
-" vim:noet:sw=4:ts=4:ft=vim