2013-08-02 19:56:12 +02:00
|
|
|
" MIT license. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
|
2013-08-06 04:44:34 +02:00
|
|
|
let s:ext = {}
|
|
|
|
let s:ext._cursormove_funcrefs = []
|
|
|
|
function! s:ext.add_statusline_funcref(funcref) dict
|
|
|
|
call add(g:airline_statusline_funcrefs, a:funcref)
|
|
|
|
endfunction
|
|
|
|
function! s:ext.add_cursormove_funcref(funcref) dict
|
|
|
|
call add(self._cursormove_funcrefs, a:funcref)
|
|
|
|
endfunction
|
|
|
|
|
2013-08-06 05:56:20 +02:00
|
|
|
let s:filetype_overrides = {
|
|
|
|
\ 'netrw': [ 'netrw', '%f' ],
|
|
|
|
\ 'unite': [ 'Unite', '%{unite#get_status_string()}' ],
|
|
|
|
\ 'nerdtree': [ 'NERD', '' ],
|
|
|
|
\ 'gundo': [ 'Gundo', '' ],
|
|
|
|
\ 'diff': [ 'diff', '' ],
|
|
|
|
\ 'vimfiler': [ 'vimfiler', '%{vimfiler#get_status_string()}' ],
|
|
|
|
\ 'minibufexpl': [ 'MiniBufExplorer', '' ],
|
|
|
|
\ 'startify': [ 'startify', '' ],
|
|
|
|
\ }
|
|
|
|
|
2013-08-12 03:13:18 +02:00
|
|
|
let s:filetype_regex_overrides = {}
|
|
|
|
|
2013-07-25 23:54:49 +02:00
|
|
|
function! airline#extensions#apply_left_override(section1, section2)
|
2013-07-09 04:52:07 +02:00
|
|
|
let w:airline_section_a = a:section1
|
|
|
|
let w:airline_section_b = a:section2
|
|
|
|
let w:airline_section_c = ''
|
2013-08-10 18:05:49 +02:00
|
|
|
let w:airline_render_left = 1
|
|
|
|
let w:airline_render_right = 0
|
2013-07-09 04:52:07 +02:00
|
|
|
endfunction
|
|
|
|
|
2013-08-06 05:34:45 +02:00
|
|
|
let s:active_winnr = -1
|
|
|
|
function! airline#extensions#update_statusline()
|
|
|
|
let s:active_winnr = winnr()
|
2013-08-03 16:59:34 +02:00
|
|
|
|
2013-07-25 14:00:17 +02:00
|
|
|
if &buftype == 'quickfix'
|
|
|
|
let w:airline_section_a = 'Quickfix'
|
|
|
|
let w:airline_section_b = ''
|
|
|
|
let w:airline_section_c = ''
|
|
|
|
let w:airline_section_x = ''
|
2013-07-25 19:49:03 +02:00
|
|
|
elseif &buftype == 'help'
|
2013-08-10 18:05:49 +02:00
|
|
|
call airline#extensions#apply_left_override('Help', '%f')
|
2013-07-26 14:12:39 +02:00
|
|
|
let w:airline_section_x = ''
|
|
|
|
let w:airline_section_y = ''
|
2013-08-10 18:05:49 +02:00
|
|
|
let w:airline_render_right = 1
|
2013-07-25 14:00:17 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
if &previewwindow
|
|
|
|
let w:airline_section_a = 'Preview'
|
|
|
|
let w:airline_section_b = ''
|
|
|
|
let w:airline_section_c = bufname(winbufnr(winnr()))
|
|
|
|
endif
|
|
|
|
|
2013-08-06 05:56:20 +02:00
|
|
|
if has_key(s:filetype_overrides, &ft)
|
|
|
|
let args = s:filetype_overrides[&ft]
|
|
|
|
call airline#extensions#apply_left_override(args[0], args[1])
|
2013-07-09 02:51:33 +02:00
|
|
|
endif
|
2013-08-12 03:13:18 +02:00
|
|
|
|
|
|
|
for item in items(s:filetype_regex_overrides)
|
|
|
|
if match(&ft, item[0]) >= 0
|
|
|
|
call airline#extensions#apply_left_override(item[1][0], item[1][1])
|
|
|
|
endif
|
|
|
|
endfor
|
2013-07-26 00:29:18 +02:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#is_excluded_window()
|
|
|
|
for matchft in g:airline_exclude_filetypes
|
|
|
|
if matchft ==# &ft
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfor
|
2013-07-25 14:00:17 +02:00
|
|
|
|
2013-07-26 00:29:18 +02:00
|
|
|
for matchw in g:airline_exclude_filenames
|
|
|
|
if matchstr(expand('%'), matchw) ==# matchw
|
|
|
|
return 1
|
|
|
|
endif
|
2013-07-25 14:00:17 +02:00
|
|
|
endfor
|
2013-07-26 00:29:18 +02:00
|
|
|
|
|
|
|
if g:airline_exclude_preview && &previewwindow
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
return 0
|
2013-07-09 02:51:33 +02:00
|
|
|
endfunction
|
2013-07-09 15:48:57 +02:00
|
|
|
|
2013-07-27 16:02:43 +02:00
|
|
|
function! airline#extensions#load_theme()
|
|
|
|
if get(g:, 'loaded_ctrlp', 0)
|
|
|
|
call airline#extensions#ctrlp#load_theme()
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-08-06 05:34:45 +02:00
|
|
|
function! s:sync_active_winnr()
|
2013-08-15 22:05:12 +02:00
|
|
|
if exists('#airline') && winnr() != s:active_winnr
|
2013-08-16 03:47:54 +02:00
|
|
|
if airline#util#exec_funcrefs(s:ext._cursormove_funcrefs, 1)
|
2013-08-06 05:34:45 +02:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
call airline#update_statusline()
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-07-09 15:48:57 +02:00
|
|
|
function! airline#extensions#load()
|
2013-08-06 05:34:45 +02:00
|
|
|
" non-trivial number of external plugins use eventignore=all, so we need to account for that
|
|
|
|
autocmd CursorMoved * call <sid>sync_active_winnr()
|
|
|
|
|
|
|
|
" load core funcrefs
|
|
|
|
call add(g:airline_exclude_funcrefs, function('airline#extensions#is_excluded_window'))
|
|
|
|
call add(g:airline_statusline_funcrefs, function('airline#extensions#update_statusline'))
|
|
|
|
|
2013-07-27 16:02:43 +02:00
|
|
|
if get(g:, 'loaded_unite', 0)
|
|
|
|
let g:unite_force_overwrite_statusline = 0
|
|
|
|
endif
|
2013-08-06 05:34:45 +02:00
|
|
|
|
2013-07-27 16:02:43 +02:00
|
|
|
if get(g:, 'loaded_vimfiler', 0)
|
|
|
|
let g:vimfiler_force_overwrite_statusline = 0
|
|
|
|
endif
|
2013-07-09 15:48:57 +02:00
|
|
|
|
2013-07-22 03:29:31 +02:00
|
|
|
if get(g:, 'loaded_ctrlp', 0)
|
2013-08-06 05:34:45 +02:00
|
|
|
call airline#extensions#ctrlp#init(s:ext)
|
2013-07-09 15:48:57 +02:00
|
|
|
endif
|
|
|
|
|
2013-07-25 23:54:49 +02:00
|
|
|
if get(g:, 'command_t_loaded', 0)
|
2013-08-06 04:56:30 +02:00
|
|
|
call airline#extensions#commandt#init(s:ext)
|
2013-07-25 23:54:49 +02:00
|
|
|
endif
|
|
|
|
|
2013-08-18 20:50:22 +02:00
|
|
|
if exists(':UndotreeToggle')
|
|
|
|
call airline#extensions#undotree#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-08-19 18:03:10 +02:00
|
|
|
if get(g:, 'airline_enable_hunks', 1) && exists('*GitGutterGetHunkSummary')
|
2013-08-18 23:02:33 +02:00
|
|
|
call airline#extensions#hunks#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-08-12 16:50:53 +02:00
|
|
|
if g:airline_enable_tagbar && exists(':TagbarToggle')
|
2013-08-06 05:16:49 +02:00
|
|
|
call airline#extensions#tagbar#init(s:ext)
|
2013-07-21 04:31:05 +02:00
|
|
|
endif
|
2013-07-26 00:29:18 +02:00
|
|
|
|
2013-08-15 21:02:54 +02:00
|
|
|
if g:airline_enable_csv && (get(g:, 'loaded_csv', 0) || exists(':Table'))
|
2013-08-14 03:47:08 +02:00
|
|
|
call airline#extensions#csv#init(s:ext)
|
2013-08-13 23:27:21 +02:00
|
|
|
endif
|
|
|
|
|
2013-08-12 03:13:18 +02:00
|
|
|
if exists(':VimShell')
|
|
|
|
let s:filetype_overrides['vimshell'] = ['vimshell','%{vimshell#get_status_string()}']
|
|
|
|
let s:filetype_regex_overrides['^int-'] = ['vimshell','%{substitute(&ft, "int-", "", "")}']
|
|
|
|
endif
|
|
|
|
|
2013-08-06 05:07:01 +02:00
|
|
|
if g:airline_enable_branch && (get(g:, 'loaded_fugitive', 0) || get(g:, 'loaded_lawrencium', 0))
|
|
|
|
call airline#extensions#branch#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-08-06 04:56:30 +02:00
|
|
|
if g:airline_enable_syntastic && get(g:, 'loaded_syntastic_plugin')
|
|
|
|
call airline#extensions#syntastic#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if g:airline_enable_bufferline && exists('*bufferline#get_status_string')
|
2013-08-06 04:44:34 +02:00
|
|
|
call airline#extensions#bufferline#init(s:ext)
|
2013-07-21 04:31:05 +02:00
|
|
|
endif
|
2013-08-03 16:59:34 +02:00
|
|
|
|
2013-08-07 02:17:33 +02:00
|
|
|
if g:airline_detect_whitespace
|
2013-08-08 16:42:27 +02:00
|
|
|
call airline#extensions#whitespace#init()
|
2013-08-07 02:17:33 +02:00
|
|
|
endif
|
|
|
|
|
2013-08-10 23:02:48 +02:00
|
|
|
if g:airline_detect_iminsert
|
|
|
|
call airline#extensions#iminsert#init()
|
|
|
|
endif
|
|
|
|
|
2013-08-16 03:47:54 +02:00
|
|
|
call airline#util#exec_funcrefs(g:airline_statusline_funcrefs, 0)
|
2013-07-09 15:48:57 +02:00
|
|
|
endfunction
|
|
|
|
|