Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
249 B
VimL
Raw Permalink Normal View History

2023-01-11 13:36:49 -05:00
function! bones#_compat(colors_name)
if exists('g:' . a:colors_name . '_compat')
return g:{a:colors_name}_compat != 0
elseif exists('g:bones_compat')
return g:bones_compat != 0
else
return 0
endif
endfunction