Merge pull request #113 from millermedeiros/iss-sign

sign throwing error during open on terminal
This commit is contained in:
Martin Grenfell 2011-12-07 05:32:27 -08:00
commit b96617994b

View File

@ -23,12 +23,12 @@ if !s:running_windows
let s:uname = system('uname')
endif
if !exists("g:syntastic_enable_signs") || !has('signs')
let g:syntastic_enable_signs = 1
if !exists("g:syntastic_enable_signs")
let g:syntastic_enable_signs = has('signs')? 1 : 0
endif
if !exists("g:syntastic_enable_balloons") || !has('balloon_eval')
let g:syntastic_enable_balloons = 1
if !exists("g:syntastic_enable_balloons")
let g:syntastic_enable_balloons = has('balloon_eval')? 1 : 0
endif
if !exists("g:syntastic_auto_loc_list")