Merge pull request #113 from millermedeiros/iss-sign
sign throwing error during open on terminal
This commit is contained in:
commit
b96617994b
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user