We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd18ffb commit f90b582Copy full SHA for f90b582
autoload/airline/themes/dracula.vim
@@ -17,7 +17,7 @@ func! s:clr(fg, bg, ...)
17
let l:fg = g:dracula#palette[a:fg]
18
let l:bg = g:dracula#palette[a:bg]
19
return [ l:fg[0], l:bg[0], l:fg[1], l:bg[1] ] +
20
- \ filter(copy(a:000), {_, val -> type(val) == 1 && len(val) > 0 })
+ \ filter(copy(a:000), 'type(v:val) == 1 && len(v:val) > 0')
21
endfunc
22
23
" Takes three ['fg', 'bg'] color lists and optionally a dictionary of extra
0 commit comments