" 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 =TriggerSnippet() snor i=TriggerSnippet() snor b snor ' b' snor a snor bi " By default load snippets in snippets_dir if empty(snippets_dir) || !isdirectory(snippets_dir) finish endif if isdirectory(snippets_dir.'_') call ExtractSnips(snippets_dir.'_', '_') endif if filereadable(snippets_dir.'_.snippets') call ExtractSnipsFile(snippets_dir.'_.snippets') endif au FileType * if &ft != 'help' | call GetSnippets(g:snippets_dir) | endif " vim:noet:sw=4:ts=4:ft=vim