improve autoload/lightline.vim: down-convert colors only when &t_Co < 256

This commit is contained in:
itchyny
2015-03-01 10:53:07 +09:00
parent 6e25afeda1
commit 387606ebc5

View File

@@ -3,7 +3,7 @@
" Version: 0.0 " Version: 0.0
" Author: itchyny " Author: itchyny
" License: MIT License " License: MIT License
" Last Change: 2015/01/17 12:52:19. " Last Change: 2015/03/01 10:51:32.
" ============================================================================= " =============================================================================
let s:save_cpo = &cpo let s:save_cpo = &cpo
@@ -207,7 +207,7 @@ endfunction
function! lightline#highlight(...) abort function! lightline#highlight(...) abort
let [c, f, g] = [s:lightline.palette, s:lightline.mode_fallback, s:lightline.component_type] let [c, f, g] = [s:lightline.palette, s:lightline.mode_fallback, s:lightline.component_type]
if (has('win32') || has('win64')) && !has('gui_running') if (has('win32') || has('win64')) && !has('gui_running') && &t_Co < 256
for u in values(c) for u in values(c)
for v in values(u) for v in values(u)
for _ in v | let [_[2], _[3]] = [lightline#colortable#gui2cui(_[0], _[2]), lightline#colortable#gui2cui(_[1], _[3])] | endfor for _ in v | let [_[2], _[3]] = [lightline#colortable#gui2cui(_[0], _[2]), lightline#colortable#gui2cui(_[1], _[3])] | endfor