improved unite integration (#165).

This commit is contained in:
Bailey Ling 2013-08-24 04:08:57 +00:00
parent 53b856b0c5
commit 74849d4a10
3 changed files with 22 additions and 4 deletions

View File

@ -3,9 +3,9 @@
let s:prototype = {}
function! s:prototype.split(gutter)
function! s:prototype.split(...)
let self._side = 0
let self._line .= '%#'.self._curgroup.'#'.a:gutter
let self._line .= '%#'.self._curgroup.'#'.(a:0 ? a:1 : '%=')
endfunction
function! s:prototype.add_section(group, contents)

View File

@ -13,7 +13,6 @@ let s:script_path = expand('<sfile>:p:h')
let s:filetype_overrides = {
\ 'netrw': [ 'netrw', '%f' ],
\ 'unite': [ 'Unite', '%{unite#get_status_string()}' ],
\ 'nerdtree': [ 'NERD', '' ],
\ 'gundo': [ 'Gundo', '' ],
\ 'diff': [ 'diff', '' ],
@ -110,7 +109,7 @@ function! airline#extensions#load()
call airline#add_statusline_func('airline#extensions#update_statusline')
if get(g:, 'loaded_unite', 0)
let g:unite_force_overwrite_statusline = 0
call airline#extensions#unite#init(s:ext)
endif
if get(g:, 'loaded_vimfiler', 0)

View File

@ -0,0 +1,19 @@
" MIT License. Copyright (c) 2013 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
function! airline#extensions#unite#apply(...)
if &ft == 'unite'
call a:1.add_section('airline_a', ' Unite ')
call a:1.add_section('airline_b', ' %{unite#get_context().buffer_name} ')
call a:1.add_section('airline_c', ' %{unite#get_status_string()} ')
call a:1.split()
call a:1.add_section('airline_y', ' %{unite#get_context().real_buffer_name} ')
return 1
endif
endfunction
function! airline#extensions#unite#init(ext)
let g:unite_force_overwrite_statusline = 0
call a:ext.add_statusline_func('airline#extensions#unite#apply')
endfunction