fix guard condition for csv. resolves #247.

This commit is contained in:
Bailey Ling 2013-09-11 17:07:58 +00:00
parent 1dcdfc502e
commit 8886ea0a23
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
" MIT License. Copyright (c) 2013 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
if !get(g:, 'loaded_csv', 0)
if !get(g:, 'loaded_csv', 0) || !exists(':Table')
finish
endif