Merge pull request #213 from d7xdev/bugfix/E121_undef_var
Fix E121: Undefined variable `g:dracula_undercurl`
This commit is contained in:
commit
80d2667818
1 changed files with 2 additions and 2 deletions
|
@ -81,8 +81,8 @@ if !exists('g:dracula_underline')
|
|||
let g:dracula_underline = 1
|
||||
endif
|
||||
|
||||
if !exists('g:dracula_undercurl') && g:dracula_underline != 0
|
||||
let g:dracula_undercurl = 1
|
||||
if !exists('g:dracula_undercurl')
|
||||
let g:dracula_undercurl = g:dracula_underline
|
||||
endif
|
||||
|
||||
if !exists('g:dracula_inverse')
|
||||
|
|
Loading…
Reference in a new issue