upgrade replace to a mode of its own.

This commit is contained in:
Bailey Ling
2013-07-11 03:03:27 +00:00
parent 150cd09d38
commit 78946af962
9 changed files with 77 additions and 58 deletions
+2 -1
View File
@@ -1,5 +1,5 @@
" generates a hashtable which defines the colors for each highlight group
function! airline#themes#generate_color_map(section1, section2, section3)
function! airline#themes#generate_color_map(section1, section2, section3, file)
" guifg guibg ctermfg ctermbg gui/term
return {
\ 'mode': [ a:section1[0] , a:section1[1] , a:section1[2] , a:section1[3] , 'bold' ] ,
@@ -7,5 +7,6 @@ function! airline#themes#generate_color_map(section1, section2, section3)
\ 'info': [ a:section2[0] , a:section2[1] , a:section2[2] , a:section2[3] , '' ] ,
\ 'info_separator': [ a:section2[1] , a:section3[1] , a:section2[3] , a:section3[3] , 'bold' ] ,
\ 'statusline': [ a:section3[0] , a:section3[1] , a:section3[2] , a:section3[3] , '' ] ,
\ 'file': [ a:file[0] , a:file[1] , a:file[2] , a:file[3] , '' ] ,
\ }
endfunction