Merge pull request #213 from d7xdev/bugfix/E121_undef_var

Fix E121: Undefined variable `g:dracula_undercurl`
This commit is contained in:
D. Ben Knoble 2020-10-19 17:17:03 -04:00 committed by GitHub
commit 80d2667818
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,8 +81,8 @@ if !exists('g:dracula_underline')
let g:dracula_underline = 1 let g:dracula_underline = 1
endif endif
if !exists('g:dracula_undercurl') && g:dracula_underline != 0 if !exists('g:dracula_undercurl')
let g:dracula_undercurl = 1 let g:dracula_undercurl = g:dracula_underline
endif endif
if !exists('g:dracula_inverse') if !exists('g:dracula_inverse')