2013-07-09 00:51:33 +00:00
|
|
|
let s:sections = ['a','b','c','gutter','x','y','z']
|
|
|
|
|
2013-07-07 12:41:36 +00:00
|
|
|
function! airline#extensions#load()
|
2013-07-07 12:59:05 +00:00
|
|
|
let g:unite_force_overwrite_statusline = 0
|
|
|
|
|
2013-07-07 12:41:36 +00:00
|
|
|
if exists('g:loaded_ctrlp') && g:loaded_ctrlp
|
|
|
|
call airline#extensions#ctrlp#load_ctrlp_hi()
|
|
|
|
let g:ctrlp_status_func = {
|
|
|
|
\ 'main': 'airline#extensions#ctrlp#ctrlp_airline',
|
|
|
|
\ 'prog': 'airline#extensions#ctrlp#ctrlp_airline_status',
|
|
|
|
\ }
|
|
|
|
endif
|
2013-07-09 11:48:11 +00:00
|
|
|
endfunction
|
2013-07-09 00:51:33 +00:00
|
|
|
|
2013-07-09 11:48:11 +00:00
|
|
|
function! s:empty_sections()
|
|
|
|
for section in s:sections
|
|
|
|
let w:airline_section_{section} = ''
|
|
|
|
endfor
|
2013-07-09 00:51:33 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-07-09 02:52:07 +00:00
|
|
|
function! s:override_left_only(section1, section2)
|
|
|
|
let w:airline_section_a = a:section1
|
|
|
|
let w:airline_section_b = a:section2
|
|
|
|
let w:airline_section_c = ''
|
|
|
|
let w:airline_left_only = 1
|
|
|
|
endfunction
|
|
|
|
|
2013-07-09 11:48:11 +00:00
|
|
|
function! airline#extensions#apply_window_overrides()
|
2013-07-09 02:52:07 +00:00
|
|
|
silent! unlet w:airline_left_only
|
2013-07-09 00:51:33 +00:00
|
|
|
for section in s:sections
|
|
|
|
silent! unlet w:airline_section_{section}
|
|
|
|
endfor
|
|
|
|
|
|
|
|
if &ft == 'netrw'
|
2013-07-09 02:52:07 +00:00
|
|
|
call s:override_left_only('netrw', '%f')
|
2013-07-09 00:51:33 +00:00
|
|
|
elseif &ft == 'unite'
|
2013-07-09 02:52:07 +00:00
|
|
|
call s:override_left_only('Unite', unite#get_status_string())
|
|
|
|
elseif &ft == 'nerdtree'
|
|
|
|
call s:override_left_only('NERD', '')
|
|
|
|
elseif &ft == 'undotree'
|
|
|
|
call s:override_left_only('undotree', '')
|
|
|
|
elseif &ft == 'gundo'
|
|
|
|
call s:override_left_only('Gundo', '')
|
|
|
|
elseif &ft == 'diff'
|
|
|
|
call s:override_left_only('diff', '')
|
|
|
|
elseif &ft == 'tagbar'
|
|
|
|
call s:override_left_only('tagbar', '')
|
2013-07-09 22:32:35 +00:00
|
|
|
elseif &ft == 'minibufexpl'
|
|
|
|
call s:override_left_only('MiniBufExplorer', '')
|
2013-07-09 00:51:33 +00:00
|
|
|
endif
|
|
|
|
endfunction
|