2016-01-15 03:38:38 +01:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-20 02:13:29 +02:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-02 19:56:12 +02:00
|
|
|
|
2013-08-06 04:44:34 +02:00
|
|
|
let s:ext = {}
|
2013-09-02 01:39:06 +02:00
|
|
|
let s:ext._theme_funcrefs = []
|
|
|
|
|
2013-08-23 23:22:20 +02:00
|
|
|
function! s:ext.add_statusline_func(name) dict
|
|
|
|
call airline#add_statusline_func(a:name)
|
|
|
|
endfunction
|
|
|
|
function! s:ext.add_statusline_funcref(function) dict
|
|
|
|
call airline#add_statusline_funcref(a:function)
|
2013-08-06 04:44:34 +02:00
|
|
|
endfunction
|
2013-08-24 15:31:30 +02:00
|
|
|
function! s:ext.add_inactive_statusline_func(name) dict
|
|
|
|
call airline#add_inactive_statusline_func(a:name)
|
|
|
|
endfunction
|
2013-09-02 01:39:06 +02:00
|
|
|
function! s:ext.add_theme_func(name) dict
|
|
|
|
call add(self._theme_funcrefs, function(a:name))
|
|
|
|
endfunction
|
2013-08-06 04:44:34 +02:00
|
|
|
|
2013-09-03 17:04:17 +02:00
|
|
|
let s:script_path = tolower(resolve(expand('<sfile>:p:h')))
|
2013-08-22 06:19:56 +02:00
|
|
|
|
2013-08-06 05:56:20 +02:00
|
|
|
let s:filetype_overrides = {
|
|
|
|
\ 'nerdtree': [ 'NERD', '' ],
|
|
|
|
\ 'gundo': [ 'Gundo', '' ],
|
|
|
|
\ 'vimfiler': [ 'vimfiler', '%{vimfiler#get_status_string()}' ],
|
|
|
|
\ 'minibufexpl': [ 'MiniBufExplorer', '' ],
|
|
|
|
\ 'startify': [ 'startify', '' ],
|
2014-11-25 16:49:43 +01:00
|
|
|
\ 'vim-plug': [ 'Plugins', '' ],
|
2013-08-06 05:56:20 +02:00
|
|
|
\ }
|
|
|
|
|
2013-08-12 03:13:18 +02:00
|
|
|
let s:filetype_regex_overrides = {}
|
|
|
|
|
2013-08-25 17:39:11 +02:00
|
|
|
function! s:check_defined_section(name)
|
|
|
|
if !exists('w:airline_section_{a:name}')
|
2013-08-28 04:36:12 +02:00
|
|
|
let w:airline_section_{a:name} = g:airline_section_{a:name}
|
2013-08-25 17:39:11 +02:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#append_to_section(name, value)
|
|
|
|
call <sid>check_defined_section(a:name)
|
|
|
|
let w:airline_section_{a:name} .= a:value
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#prepend_to_section(name, value)
|
|
|
|
call <sid>check_defined_section(a:name)
|
|
|
|
let w:airline_section_{a:name} = a:value . w:airline_section_{a:name}
|
|
|
|
endfunction
|
|
|
|
|
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
|
2013-09-22 22:19:15 +02:00
|
|
|
let w:airline_section_c = airline#section#create(['readonly'])
|
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
|
2013-08-31 17:55:00 +02:00
|
|
|
function! airline#extensions#apply(...)
|
2013-09-23 01:13:08 +02:00
|
|
|
let s:active_winnr = winnr()
|
|
|
|
|
2013-08-25 05:09:12 +02:00
|
|
|
if s:is_excluded_window()
|
2013-08-22 05:25:22 +02:00
|
|
|
return -1
|
|
|
|
endif
|
|
|
|
|
2013-10-21 19:22:07 +02:00
|
|
|
if &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
|
|
|
|
|
2013-08-25 05:09:12 +02:00
|
|
|
function! s:is_excluded_window()
|
2013-07-26 00:29:18 +02:00
|
|
|
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()
|
2013-09-02 01:39:06 +02:00
|
|
|
call airline#util#exec_funcrefs(s:ext._theme_funcrefs, g:airline#themes#{g:airline_theme}#palette)
|
2013-07-27 16:02:43 +02:00
|
|
|
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-06 05:34:45 +02:00
|
|
|
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()
|
|
|
|
|
2015-02-28 23:40:23 +01:00
|
|
|
if exists('g:airline_extensions')
|
|
|
|
for ext in g:airline_extensions
|
|
|
|
call airline#extensions#{ext}#init(s:ext)
|
|
|
|
endfor
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2013-10-21 19:22:07 +02:00
|
|
|
call airline#extensions#quickfix#init(s:ext)
|
|
|
|
|
2013-07-27 16:02:43 +02:00
|
|
|
if get(g:, 'loaded_unite', 0)
|
2013-08-24 06:08:57 +02:00
|
|
|
call airline#extensions#unite#init(s:ext)
|
2013-07-27 16:02:43 +02:00
|
|
|
endif
|
2013-08-06 05:34:45 +02:00
|
|
|
|
2014-01-19 20:06:55 +01:00
|
|
|
if exists(':NetrwSettings')
|
|
|
|
call airline#extensions#netrw#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
|
2015-02-28 03:44:35 +01:00
|
|
|
if get(g:, 'ctrlspace_loaded', 0)
|
|
|
|
call airline#extensions#ctrlspace#init(s:ext)
|
|
|
|
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-20 02:13:29 +02:00
|
|
|
if (get(g:, 'airline#extensions#hunks#enabled', 1) && get(g:, 'airline_enable_hunks', 1))
|
2015-04-16 20:26:42 +02:00
|
|
|
\ && (exists('g:loaded_signify') || exists('g:loaded_gitgutter') || exists('g:loaded_changes') || exists('g:loaded_quickfixsigns'))
|
2013-08-18 23:02:33 +02:00
|
|
|
call airline#extensions#hunks#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-08-20 02:13:29 +02:00
|
|
|
if (get(g:, 'airline#extensions#tagbar#enabled', 1) && get(g:, 'airline_enable_tagbar', 1))
|
|
|
|
\ && 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-20 02:13:29 +02:00
|
|
|
if (get(g:, 'airline#extensions#csv#enabled', 1) && get(g:, 'airline_enable_csv', 1))
|
|
|
|
\ && (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-20 02:13:29 +02:00
|
|
|
if (get(g:, 'airline#extensions#branch#enabled', 1) && get(g:, 'airline_enable_branch', 1))
|
2014-02-25 22:43:19 +01:00
|
|
|
\ && (exists('*fugitive#head') || exists('*lawrencium#statusline') ||
|
|
|
|
\ (get(g:, 'airline#extensions#branch#use_vcscommand', 0) && exists('*VCSCommandGetStatusLine')))
|
2013-08-06 05:07:01 +02:00
|
|
|
call airline#extensions#branch#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-08-20 02:13:29 +02:00
|
|
|
if (get(g:, 'airline#extensions#bufferline#enabled', 1) && get(g:, 'airline_enable_bufferline', 1))
|
|
|
|
\ && 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
|
|
|
|
2016-01-20 20:02:21 +01:00
|
|
|
if (get(g:, 'airline#extensions#virtualenv#enabled', 1) && exists(':VirtualEnvList'))
|
2013-08-24 22:49:54 +02:00
|
|
|
call airline#extensions#virtualenv#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-10-01 20:25:43 +02:00
|
|
|
if (get(g:, 'airline#extensions#eclim#enabled', 1) && exists(':ProjectCreate'))
|
2013-10-01 06:42:42 +02:00
|
|
|
call airline#extensions#eclim#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-08-28 01:38:34 +02:00
|
|
|
if (get(g:, 'airline#extensions#syntastic#enabled', 1) && get(g:, 'airline_enable_syntastic', 1))
|
2013-10-01 20:25:43 +02:00
|
|
|
\ && exists(':SyntasticCheck')
|
2013-08-28 01:38:34 +02:00
|
|
|
call airline#extensions#syntastic#init(s:ext)
|
2013-08-07 02:17:33 +02:00
|
|
|
endif
|
|
|
|
|
2013-08-28 15:51:54 +02:00
|
|
|
if (get(g:, 'airline#extensions#whitespace#enabled', 1) && get(g:, 'airline_detect_whitespace', 1))
|
|
|
|
call airline#extensions#whitespace#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2015-10-05 16:17:04 +02:00
|
|
|
if get(g:, 'airline#extensions#wordcount#enabled', 1)
|
|
|
|
call airline#extensions#wordcount#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-08-28 15:51:54 +02:00
|
|
|
if get(g:, 'airline#extensions#tabline#enabled', 0)
|
|
|
|
call airline#extensions#tabline#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2013-11-17 20:15:55 +01:00
|
|
|
if get(g:, 'airline#extensions#tmuxline#enabled', 1) && exists(':Tmuxline')
|
|
|
|
call airline#extensions#tmuxline#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2014-01-05 18:47:44 +01:00
|
|
|
if get(g:, 'airline#extensions#promptline#enabled', 1) && exists(':PromptlineSnapshot') && len(get(g:, 'airline#extensions#promptline#snapshot_file', ''))
|
|
|
|
call airline#extensions#promptline#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2014-04-23 00:13:16 +02:00
|
|
|
if get(g:, 'airline#extensions#nrrwrgn#enabled', 1) && exists(':NR') == 2
|
|
|
|
call airline#extensions#nrrwrgn#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2014-07-28 23:56:08 +02:00
|
|
|
if (get(g:, 'airline#extensions#capslock#enabled', 1) && exists('*CapsLockStatusline'))
|
|
|
|
call airline#extensions#capslock#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2014-09-05 05:02:19 +02:00
|
|
|
if (get(g:, 'airline#extensions#windowswap#enabled', 1) && get(g:, 'loaded_windowswap', 0))
|
|
|
|
call airline#extensions#windowswap#init(s:ext)
|
|
|
|
endif
|
|
|
|
|
2014-04-19 20:38:02 +02:00
|
|
|
if !get(g:, 'airline#extensions#disable_rtp_load', 0)
|
|
|
|
" load all other extensions, which are not part of the default distribution.
|
|
|
|
" (autoload/airline/extensions/*.vim outside of our s:script_path).
|
|
|
|
for file in split(globpath(&rtp, "autoload/airline/extensions/*.vim"), "\n")
|
|
|
|
" we have to check both resolved and unresolved paths, since it's possible
|
|
|
|
" that they might not get resolved properly (see #187)
|
|
|
|
if stridx(tolower(resolve(fnamemodify(file, ':p'))), s:script_path) < 0
|
|
|
|
\ && stridx(tolower(fnamemodify(file, ':p')), s:script_path) < 0
|
|
|
|
let name = fnamemodify(file, ':t:r')
|
|
|
|
if !get(g:, 'airline#extensions#'.name.'#enabled', 1)
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
try
|
|
|
|
call airline#extensions#{name}#init(s:ext)
|
|
|
|
catch
|
|
|
|
endtry
|
2013-08-22 04:49:19 +02:00
|
|
|
endif
|
2014-04-19 20:38:02 +02:00
|
|
|
endfor
|
|
|
|
endif
|
2013-07-09 15:48:57 +02:00
|
|
|
endfunction
|
|
|
|
|