summaryrefslogtreecommitdiffstats
path: root/vim/after
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-11-09 16:12:59 -0600
committerJesse Luehrs <doy@tozt.net>2011-11-09 16:13:47 -0600
commite0fb06aacbe72169f2ede3009b0c18717760d358 (patch)
tree0532e1762e34847f519b220bfe09ccf4a039226b /vim/after
parent62f99ef3b38692f23f3f9bac3e2c9c4578fb5304 (diff)
downloadconf-e0fb06aacbe72169f2ede3009b0c18717760d358.tar.gz
conf-e0fb06aacbe72169f2ede3009b0c18717760d358.zip
convert all of my vim plugins to use pathogen
Diffstat (limited to 'vim/after')
-rw-r--r--vim/after/plugin/snipMate.vim35
1 files changed, 0 insertions, 35 deletions
diff --git a/vim/after/plugin/snipMate.vim b/vim/after/plugin/snipMate.vim
deleted file mode 100644
index 03e79ae..0000000
--- a/vim/after/plugin/snipMate.vim
+++ /dev/null
@@ -1,35 +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('loaded_snips') || exists('s:did_snips_mappings')
- 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> <s-tab> <c-r>=BackwardsSnippet()<cr>
-snor <silent> <s-tab> <esc>i<right><c-r>=BackwardsSnippet()<cr>
-ino <silent> <c-r><tab> <c-r>=ShowAvailableSnips()<cr>
-
-" The default mappings for these are annoying & sometimes break snipMate.
-" You can change them back if you want, I've put them here for convenience.
-snor <bs> b<bs>
-snor <right> <esc>a
-snor <left> <esc>bi
-snor ' b<bs>'
-snor ` b<bs>`
-snor % b<bs>%
-snor U b<bs>U
-snor ^ b<bs>^
-snor \ b<bs>\
-snor <c-x> b<bs><c-x>
-
-" 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