Comment out reloading snippets on write

This commit is contained in:
Eryn Wells 2013-12-12 22:50:33 -08:00
parent ebfbba44c8
commit 2d92e48960

8
vimrc
View file

@ -277,10 +277,10 @@ if has('autocmd')
" Reload snippets after editing the snippets file. Snippet files are
" <filetype>.snippets. Get <filetype> from the filename and reload the
" snippets for that type.
augroup ReloadSnippets
autocmd!
autocmd BufWritePost *.snippets :call ReloadSnippets(expand('%:t:r'))
augroup END
"augroup ReloadSnippets
" autocmd!
" autocmd BufWritePost *.snippets :call ReloadSnippets(expand('%:t:r'))
"augroup END
" Clean whitespace before saving: Python, C, HTML, and Objective-C
augroup StripTrailingWhitespace