diff options
| author | Anton Bobov <abobov@gmail.com> | 2013-10-18 22:14:58 +0600 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2013-10-19 00:47:57 +0600 |
| commit | 1048b107a3cfbb0490e2b394c32c90fafe4b98ac (patch) | |
| tree | 12094d66f99bf636eaa2fb91fdbed54b2df70d94 /files/.vim/after/plugin | |
| parent | ede115791a81775b1e7a65ab8ed3a8872c94a38e (diff) | |
Vim snipmate plugin moved to the bundle.
Diffstat (limited to 'files/.vim/after/plugin')
| -rw-r--r-- | files/.vim/after/plugin/snipMate.vim | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/files/.vim/after/plugin/snipMate.vim b/files/.vim/after/plugin/snipMate.vim deleted file mode 100644 index d2989cf..0000000 --- a/files/.vim/after/plugin/snipMate.vim +++ /dev/null @@ -1,23 +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> -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 |
