Skip to content

Commit 950e803

Browse files
committed
stop ignoring terminals that support > 256 colors
Thanks to @pi-rho for reporting this issue (#186).
1 parent faa6593 commit 950e803

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/css_color.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
" Commit: $Format:%H$
44
" Licence: The MIT License (MIT)
55

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

0 commit comments

Comments
 (0)