Skip to content

Commit

Permalink
stop ignoring terminals that support > 256 colors
Browse files Browse the repository at this point in the history
Thanks to @pi-rho for reporting this issue (#186).
ap committed Jan 13, 2024
1 parent faa6593 commit 950e803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/css_color.vim
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
" Commit: $Format:%H$
" Licence: The MIT License (MIT)

if ! ( v:version >= 700 && has('syntax') && ( has('gui_running') || has('nvim') || &t_Co == 256 ) )
if ! ( v:version >= 700 && has('syntax') && ( has('gui_running') || has('nvim') || &t_Co >= 256 ) )
function! css_color#init(type, keywords, groups)
endfunction
function! css_color#extend(groups)

0 comments on commit 950e803

Please sign in to comment.