2013-08-18 03:25:24 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-09-14 17:07:37 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-02 17:56:12 +00:00
|
|
|
|
2013-07-24 03:00:23 +00:00
|
|
|
" generates a dictionary which defines the colors for each highlight group
|
2013-09-14 17:07:37 +00:00
|
|
|
function! airline#themes#generate_color_map(section1, section2, section3, ...)
|
|
|
|
let palette = {
|
|
|
|
\ 'airline_a': [ a:section1[0] , a:section1[1] , a:section1[2] , a:section1[3] , get(a:section1 , 4 , 'bold') ] ,
|
|
|
|
\ 'airline_b': [ a:section2[0] , a:section2[1] , a:section2[2] , a:section2[3] , get(a:section2 , 4 , '' ) ] ,
|
|
|
|
\ 'airline_c': [ a:section3[0] , a:section3[1] , a:section3[2] , a:section3[3] , get(a:section3 , 4 , '' ) ] ,
|
|
|
|
\ }
|
|
|
|
|
|
|
|
if a:0 > 1
|
|
|
|
call extend(palette, {
|
|
|
|
\ 'airline_x': [ a:1[0] , a:1[1] , a:1[2] , a:1[3] , get(a:1 , 4 , '' ) ] ,
|
|
|
|
\ 'airline_y': [ a:2[0] , a:2[1] , a:2[2] , a:2[3] , get(a:2 , 4 , '' ) ] ,
|
|
|
|
\ 'airline_z': [ a:3[0] , a:3[1] , a:3[2] , a:3[3] , get(a:3 , 4 , '' ) ] ,
|
|
|
|
\ 'airline_file': [ a:4[0] , a:4[1] , a:4[2] , a:4[3] , get(a:4 , 4 , '' ) ] ,
|
|
|
|
\ })
|
|
|
|
else
|
|
|
|
call extend(palette, {
|
|
|
|
\ 'airline_file': [ a:1[0] , a:1[1] , a:1[2] , a:1[3] , get(a:1 , 4 , '' ) ] ,
|
|
|
|
\ 'airline_x': [ a:section3[0] , a:section3[1] , a:section3[2] , a:section3[3] , get(a:section3 , 4 , '' ) ] ,
|
|
|
|
\ 'airline_y': [ a:section2[0] , a:section2[1] , a:section2[2] , a:section2[3] , get(a:section2 , 4 , '' ) ] ,
|
|
|
|
\ 'airline_z': [ a:section1[0] , a:section1[1] , a:section1[2] , a:section1[3] , get(a:section1 , 4 , '' ) ] ,
|
|
|
|
\ })
|
|
|
|
endif
|
|
|
|
|
|
|
|
return palette
|
2013-07-09 01:22:04 +00:00
|
|
|
endfunction
|
2013-08-04 01:25:35 +00:00
|
|
|
|
|
|
|
function! airline#themes#get_highlight(group, ...)
|
2013-09-02 02:57:32 +00:00
|
|
|
return call('airline#highlighter#get_highlight', [a:group] + a:000)
|
2013-08-04 01:25:35 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#themes#get_highlight2(fg, bg, ...)
|
2013-09-02 02:57:32 +00:00
|
|
|
return call('airline#highlighter#get_highlight2', [a:fg, a:bg] + a:000)
|
2013-08-04 01:25:35 +00:00
|
|
|
endfunction
|
2013-08-09 20:08:36 +00:00
|
|
|
|
2013-08-18 03:25:24 +00:00
|
|
|
function! airline#themes#patch(palette)
|
2013-09-01 14:06:25 +00:00
|
|
|
for mode in keys(a:palette)
|
|
|
|
if !has_key(a:palette[mode], 'airline_warning')
|
|
|
|
let a:palette[mode]['airline_warning'] = [ '#000000', '#df5f00', 232, 166 ]
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
2013-08-18 03:25:24 +00:00
|
|
|
" this is a pretty heavy handed, but it works...
|
|
|
|
" basically, look for the 'airline_file' group and copy the bg
|
|
|
|
" colors from 'airline_c' into it.
|
|
|
|
for mode in keys(a:palette)
|
|
|
|
let overrides = split(mode, '_')
|
2013-08-24 02:49:24 +00:00
|
|
|
let mode_colors = a:palette[overrides[0]]
|
|
|
|
if exists('mode_colors.airline_file')
|
|
|
|
let file_colors = mode_colors.airline_file
|
|
|
|
let file_colors[1] = mode_colors.airline_c[1]
|
|
|
|
let file_colors[3] = mode_colors.airline_c[3]
|
2013-08-18 03:25:24 +00:00
|
|
|
|
2013-08-24 02:49:24 +00:00
|
|
|
if len(overrides) > 1
|
2013-08-18 04:22:36 +00:00
|
|
|
let override_colors = a:palette[overrides[0].'_'.overrides[1]]
|
|
|
|
let override_colors.airline_file = copy(file_colors)
|
|
|
|
let override_status_colors = get(override_colors, 'airline_c', mode_colors.airline_c)
|
|
|
|
let override_colors.airline_file[1] = override_status_colors[1]
|
|
|
|
let override_colors.airline_file[3] = override_status_colors[3]
|
|
|
|
endif
|
2013-08-18 03:25:24 +00:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|