2018-01-05 09:37:59 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2018 Bailey Ling et al.
|
2013-08-20 00:13:29 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-02 17:56:12 +00:00
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2013-08-06 02:44:34 +00:00
|
|
|
let s:ext = {}
|
2013-09-01 23:39:06 +00:00
|
|
|
let s:ext._theme_funcrefs = []
|
|
|
|
|
2013-08-23 21:22:20 +00: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 02:44:34 +00:00
|
|
|
endfunction
|
2013-08-24 13:31:30 +00:00
|
|
|
function! s:ext.add_inactive_statusline_func(name) dict
|
|
|
|
call airline#add_inactive_statusline_func(a:name)
|
|
|
|
endfunction
|
2013-09-01 23:39:06 +00:00
|
|
|
function! s:ext.add_theme_func(name) dict
|
|
|
|
call add(self._theme_funcrefs, function(a:name))
|
|
|
|
endfunction
|
2013-08-06 02:44:34 +00:00
|
|
|
|
2013-09-03 15:04:17 +00:00
|
|
|
let s:script_path = tolower(resolve(expand('<sfile>:p:h')))
|
2013-08-22 04:19:56 +00:00
|
|
|
|
2013-08-06 03:56:20 +00:00
|
|
|
let s:filetype_overrides = {
|
2018-04-05 23:51:00 +00:00
|
|
|
\ 'nerdtree': [ get(g:, 'NERDTreeStatusline', 'NERD'), '' ],
|
2013-08-06 03:56:20 +00:00
|
|
|
\ 'gundo': [ 'Gundo', '' ],
|
|
|
|
\ 'vimfiler': [ 'vimfiler', '%{vimfiler#get_status_string()}' ],
|
|
|
|
\ 'minibufexpl': [ 'MiniBufExplorer', '' ],
|
|
|
|
\ 'startify': [ 'startify', '' ],
|
2014-11-25 15:49:43 +00:00
|
|
|
\ 'vim-plug': [ 'Plugins', '' ],
|
2013-08-06 03:56:20 +00:00
|
|
|
\ }
|
|
|
|
|
2013-08-12 01:13:18 +00:00
|
|
|
let s:filetype_regex_overrides = {}
|
|
|
|
|
2013-08-25 15:39:11 +00:00
|
|
|
function! s:check_defined_section(name)
|
|
|
|
if !exists('w:airline_section_{a:name}')
|
2013-08-28 02:36:12 +00:00
|
|
|
let w:airline_section_{a:name} = g:airline_section_{a:name}
|
2013-08-25 15:39:11 +00: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 21:54:49 +00:00
|
|
|
function! airline#extensions#apply_left_override(section1, section2)
|
2013-07-09 02:52:07 +00:00
|
|
|
let w:airline_section_a = a:section1
|
|
|
|
let w:airline_section_b = a:section2
|
2013-09-22 20:19:15 +00:00
|
|
|
let w:airline_section_c = airline#section#create(['readonly'])
|
2013-08-10 16:05:49 +00:00
|
|
|
let w:airline_render_left = 1
|
|
|
|
let w:airline_render_right = 0
|
2013-07-09 02:52:07 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-08-31 15:55:00 +00:00
|
|
|
function! airline#extensions#apply(...)
|
2013-09-22 23:13:08 +00:00
|
|
|
|
2013-08-25 03:09:12 +00:00
|
|
|
if s:is_excluded_window()
|
2013-08-22 03:25:22 +00:00
|
|
|
return -1
|
|
|
|
endif
|
|
|
|
|
2013-10-21 17:22:07 +00:00
|
|
|
if &buftype == 'help'
|
2013-08-10 16:05:49 +00:00
|
|
|
call airline#extensions#apply_left_override('Help', '%f')
|
2013-07-26 12:12:39 +00:00
|
|
|
let w:airline_section_x = ''
|
|
|
|
let w:airline_section_y = ''
|
2013-08-10 16:05:49 +00:00
|
|
|
let w:airline_render_right = 1
|
2013-07-25 12:00:17 +00: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 03:56:20 +00: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 00:51:33 +00:00
|
|
|
endif
|
2013-08-12 01:13:18 +00: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-25 22:29:18 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-08-25 03:09:12 +00:00
|
|
|
function! s:is_excluded_window()
|
2013-07-25 22:29:18 +00:00
|
|
|
for matchft in g:airline_exclude_filetypes
|
|
|
|
if matchft ==# &ft
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfor
|
2013-07-25 12:00:17 +00:00
|
|
|
|
2013-07-25 22:29:18 +00:00
|
|
|
for matchw in g:airline_exclude_filenames
|
|
|
|
if matchstr(expand('%'), matchw) ==# matchw
|
|
|
|
return 1
|
|
|
|
endif
|
2013-07-25 12:00:17 +00:00
|
|
|
endfor
|
2013-07-25 22:29:18 +00:00
|
|
|
|
|
|
|
if g:airline_exclude_preview && &previewwindow
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
return 0
|
2013-07-09 00:51:33 +00:00
|
|
|
endfunction
|
2013-07-09 13:48:57 +00:00
|
|
|
|
2013-07-27 14:02:43 +00:00
|
|
|
function! airline#extensions#load_theme()
|
2013-09-01 23:39:06 +00:00
|
|
|
call airline#util#exec_funcrefs(s:ext._theme_funcrefs, g:airline#themes#{g:airline_theme}#palette)
|
2013-07-27 14:02:43 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-07-09 13:48:57 +00:00
|
|
|
function! airline#extensions#load()
|
2016-10-24 10:14:30 +00:00
|
|
|
let loaded_ext = []
|
2013-08-06 03:34:45 +00:00
|
|
|
|
2015-02-28 22:40:23 +00:00
|
|
|
if exists('g:airline_extensions')
|
|
|
|
for ext in g:airline_extensions
|
2016-04-21 07:11:22 +00:00
|
|
|
try
|
|
|
|
call airline#extensions#{ext}#init(s:ext)
|
|
|
|
catch /^Vim\%((\a\+)\)\=:E117/ " E117, function does not exist
|
|
|
|
call airline#util#warning("Extension '".ext."' not installed, ignoring!")
|
|
|
|
endtry
|
2015-02-28 22:40:23 +00:00
|
|
|
endfor
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2013-10-21 17:22:07 +00:00
|
|
|
call airline#extensions#quickfix#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'quickfix')
|
2013-10-21 17:22:07 +00:00
|
|
|
|
2013-07-27 14:02:43 +00:00
|
|
|
if get(g:, 'loaded_unite', 0)
|
2013-08-24 04:08:57 +00:00
|
|
|
call airline#extensions#unite#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'unite')
|
2013-07-27 14:02:43 +00:00
|
|
|
endif
|
2013-08-06 03:34:45 +00:00
|
|
|
|
2017-03-01 08:41:08 +00:00
|
|
|
if get(g:, 'loaded_denite', 0)
|
|
|
|
call airline#extensions#denite#init(s:ext)
|
|
|
|
call add(loaded_ext, 'denite')
|
|
|
|
endif
|
|
|
|
|
2014-01-19 19:06:55 +00:00
|
|
|
if exists(':NetrwSettings')
|
|
|
|
call airline#extensions#netrw#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'netrw')
|
2014-01-19 19:06:55 +00:00
|
|
|
endif
|
|
|
|
|
2017-08-22 13:30:15 +00:00
|
|
|
if has("terminal")
|
|
|
|
call airline#extensions#term#init(s:ext)
|
|
|
|
call add(loaded_ext, 'term')
|
|
|
|
endif
|
|
|
|
|
2016-01-30 05:32:29 +00:00
|
|
|
if get(g:, 'airline#extensions#ycm#enabled', 0)
|
2016-01-28 16:38:59 +00:00
|
|
|
call airline#extensions#ycm#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'ycm')
|
2016-01-28 16:38:59 +00:00
|
|
|
endif
|
2015-12-26 05:10:55 +00:00
|
|
|
|
2013-07-27 14:02:43 +00:00
|
|
|
if get(g:, 'loaded_vimfiler', 0)
|
|
|
|
let g:vimfiler_force_overwrite_statusline = 0
|
|
|
|
endif
|
2013-07-09 13:48:57 +00:00
|
|
|
|
2013-07-22 01:29:31 +00:00
|
|
|
if get(g:, 'loaded_ctrlp', 0)
|
2013-08-06 03:34:45 +00:00
|
|
|
call airline#extensions#ctrlp#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'ctrlp')
|
2013-07-09 13:48:57 +00:00
|
|
|
endif
|
|
|
|
|
2018-04-08 22:47:23 +00:00
|
|
|
if get(g:, 'loaded_localsearch', 0)
|
|
|
|
call airline#extensions#localsearch#init(s:ext)
|
|
|
|
call add(loaded_ext, 'localsearch')
|
|
|
|
endif
|
|
|
|
|
2016-01-12 12:47:44 +00:00
|
|
|
if get(g:, 'CtrlSpaceLoaded', 0)
|
2015-02-28 02:44:35 +00:00
|
|
|
call airline#extensions#ctrlspace#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'ctrlspace')
|
2015-02-28 02:44:35 +00:00
|
|
|
endif
|
|
|
|
|
2013-07-25 21:54:49 +00:00
|
|
|
if get(g:, 'command_t_loaded', 0)
|
2013-08-06 02:56:30 +00:00
|
|
|
call airline#extensions#commandt#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'commandt')
|
2013-07-25 21:54:49 +00:00
|
|
|
endif
|
|
|
|
|
2013-08-18 18:50:22 +00:00
|
|
|
if exists(':UndotreeToggle')
|
|
|
|
call airline#extensions#undotree#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'undotree')
|
2013-08-18 18:50:22 +00:00
|
|
|
endif
|
|
|
|
|
2016-01-28 14:54:14 +00:00
|
|
|
if get(g:, 'airline#extensions#hunks#enabled', 1)
|
2015-04-16 18:26:42 +00:00
|
|
|
\ && (exists('g:loaded_signify') || exists('g:loaded_gitgutter') || exists('g:loaded_changes') || exists('g:loaded_quickfixsigns'))
|
2013-08-18 21:02:33 +00:00
|
|
|
call airline#extensions#hunks#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'hunks')
|
2013-08-18 21:02:33 +00:00
|
|
|
endif
|
|
|
|
|
2017-01-19 12:57:36 +00:00
|
|
|
if get(g:, 'airline#extensions#vimagit#enabled', 1)
|
|
|
|
\ && (exists('g:loaded_magit'))
|
|
|
|
call airline#extensions#vimagit#init(s:ext)
|
|
|
|
call add(loaded_ext, 'vimagit')
|
|
|
|
endif
|
|
|
|
|
2016-01-28 14:54:14 +00:00
|
|
|
if get(g:, 'airline#extensions#tagbar#enabled', 1)
|
2013-08-20 00:13:29 +00:00
|
|
|
\ && exists(':TagbarToggle')
|
2013-08-06 03:16:49 +00:00
|
|
|
call airline#extensions#tagbar#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'tagbar')
|
2013-07-21 02:31:05 +00:00
|
|
|
endif
|
2013-07-25 22:29:18 +00:00
|
|
|
|
2016-01-28 14:54:14 +00:00
|
|
|
if get(g:, 'airline#extensions#csv#enabled', 1)
|
2013-08-20 00:13:29 +00:00
|
|
|
\ && (get(g:, 'loaded_csv', 0) || exists(':Table'))
|
2013-08-14 01:47:08 +00:00
|
|
|
call airline#extensions#csv#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'csv')
|
2013-08-13 21:27:21 +00:00
|
|
|
endif
|
|
|
|
|
2013-08-12 01:13:18 +00: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
|
|
|
|
|
2018-06-04 15:31:13 +00:00
|
|
|
if get(g:, 'airline#extensions#branch#enabled', 1) && (
|
|
|
|
\ airline#util#has_fugitive() ||
|
|
|
|
\ airline#util#has_lawrencium() ||
|
|
|
|
\ airline#util#has_vcscommand() ||
|
|
|
|
\ airline#util#has_custom_scm())
|
2013-08-06 03:07:01 +00:00
|
|
|
call airline#extensions#branch#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'branch')
|
2013-08-06 03:07:01 +00:00
|
|
|
endif
|
|
|
|
|
2016-01-28 14:54:14 +00:00
|
|
|
if get(g:, 'airline#extensions#bufferline#enabled', 1)
|
2013-08-20 00:13:29 +00:00
|
|
|
\ && exists('*bufferline#get_status_string')
|
2013-08-06 02:44:34 +00:00
|
|
|
call airline#extensions#bufferline#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'bufferline')
|
2013-07-21 02:31:05 +00:00
|
|
|
endif
|
2013-08-03 14:59:34 +00:00
|
|
|
|
2017-11-22 21:11:58 +00:00
|
|
|
if get(g:, 'airline#extensions#fugitiveline#enabled', 1)
|
2018-06-04 15:31:13 +00:00
|
|
|
\ && airline#util#has_fugitive()
|
2018-03-03 15:48:06 +00:00
|
|
|
\ && index(loaded_ext, 'bufferline') == -1
|
2017-11-22 21:11:58 +00:00
|
|
|
call airline#extensions#fugitiveline#init(s:ext)
|
|
|
|
call add(loaded_ext, 'fugitiveline')
|
|
|
|
endif
|
|
|
|
|
2016-01-20 22:21:20 +00:00
|
|
|
if (get(g:, 'airline#extensions#virtualenv#enabled', 1) && (exists(':VirtualEnvList') || isdirectory($VIRTUAL_ENV)))
|
2013-08-24 20:49:54 +00:00
|
|
|
call airline#extensions#virtualenv#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'virtualenv')
|
2013-08-24 20:49:54 +00:00
|
|
|
endif
|
|
|
|
|
2013-10-01 18:25:43 +00:00
|
|
|
if (get(g:, 'airline#extensions#eclim#enabled', 1) && exists(':ProjectCreate'))
|
2013-10-01 04:42:42 +00:00
|
|
|
call airline#extensions#eclim#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'eclim')
|
2013-10-01 04:42:42 +00:00
|
|
|
endif
|
|
|
|
|
2016-01-28 14:54:14 +00:00
|
|
|
if get(g:, 'airline#extensions#syntastic#enabled', 1)
|
2013-10-01 18:25:43 +00:00
|
|
|
\ && exists(':SyntasticCheck')
|
2013-08-27 23:38:34 +00:00
|
|
|
call airline#extensions#syntastic#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'syntastic')
|
2013-08-07 00:17:33 +00:00
|
|
|
endif
|
|
|
|
|
2017-06-25 18:49:18 +00:00
|
|
|
if (get(g:, 'airline#extensions#ale#enabled', 1) && exists(':ALELint'))
|
2016-10-10 01:27:51 +00:00
|
|
|
call airline#extensions#ale#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'ale')
|
2016-10-10 01:27:51 +00:00
|
|
|
endif
|
|
|
|
|
2018-09-02 21:08:04 +00:00
|
|
|
if (get(g:, 'airline#extensions#languageclient#enabled', 1) && exists(':LanguageClientStart'))
|
|
|
|
call airline#extensions#languageclient#init(s:ext)
|
|
|
|
call add(loaded_ext, 'languageclient')
|
|
|
|
endif
|
|
|
|
|
2016-01-28 14:54:14 +00:00
|
|
|
if get(g:, 'airline#extensions#whitespace#enabled', 1)
|
2013-08-28 13:51:54 +00:00
|
|
|
call airline#extensions#whitespace#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'whitespace')
|
2016-02-29 21:38:39 +00:00
|
|
|
endif
|
|
|
|
|
2016-09-27 03:57:51 +00:00
|
|
|
if (get(g:, 'airline#extensions#neomake#enabled', 1) && exists(':Neomake'))
|
|
|
|
call airline#extensions#neomake#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'neomake')
|
2016-09-27 03:57:51 +00:00
|
|
|
endif
|
|
|
|
|
2016-02-29 21:38:39 +00:00
|
|
|
if get(g:, 'airline#extensions#po#enabled', 1) && executable('msgfmt')
|
|
|
|
call airline#extensions#po#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'po')
|
2013-08-28 13:51:54 +00:00
|
|
|
endif
|
|
|
|
|
2015-10-05 14:17:04 +00:00
|
|
|
if get(g:, 'airline#extensions#wordcount#enabled', 1)
|
|
|
|
call airline#extensions#wordcount#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'wordcount')
|
2015-10-05 14:17:04 +00:00
|
|
|
endif
|
|
|
|
|
2013-08-28 13:51:54 +00:00
|
|
|
if get(g:, 'airline#extensions#tabline#enabled', 0)
|
|
|
|
call airline#extensions#tabline#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'tabline')
|
2013-08-28 13:51:54 +00:00
|
|
|
endif
|
|
|
|
|
2013-11-17 19:15:55 +00:00
|
|
|
if get(g:, 'airline#extensions#tmuxline#enabled', 1) && exists(':Tmuxline')
|
|
|
|
call airline#extensions#tmuxline#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'tmuxline')
|
2013-11-17 19:15:55 +00:00
|
|
|
endif
|
|
|
|
|
2014-01-05 17:47:44 +00: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)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'promptline')
|
2014-01-05 17:47:44 +00:00
|
|
|
endif
|
|
|
|
|
2014-04-22 22:13:16 +00:00
|
|
|
if get(g:, 'airline#extensions#nrrwrgn#enabled', 1) && exists(':NR') == 2
|
|
|
|
call airline#extensions#nrrwrgn#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'nrrwrgn')
|
2014-04-22 22:13:16 +00:00
|
|
|
endif
|
|
|
|
|
2016-02-06 15:05:29 +00:00
|
|
|
if get(g:, 'airline#extensions#unicode#enabled', 1) && exists(':UnicodeTable') == 2
|
|
|
|
call airline#extensions#unicode#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'nrrwrgn')
|
2016-02-06 15:05:29 +00:00
|
|
|
endif
|
|
|
|
|
2014-07-28 21:56:08 +00:00
|
|
|
if (get(g:, 'airline#extensions#capslock#enabled', 1) && exists('*CapsLockStatusline'))
|
|
|
|
call airline#extensions#capslock#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'capslock')
|
2014-07-28 21:56:08 +00:00
|
|
|
endif
|
|
|
|
|
2018-02-14 09:06:44 +00:00
|
|
|
if (get(g:, 'airline#extensions#gutentags#enabled', 1) && get(g:, 'loaded_gutentags', 0))
|
|
|
|
call airline#extensions#gutentags#init(s:ext)
|
|
|
|
call add(loaded_ext, 'gutentags')
|
|
|
|
endif
|
|
|
|
|
2018-07-23 20:05:34 +00:00
|
|
|
if (get(g:, 'airline#extensions#grepper#enabled', 1) && get(g:, 'loaded_grepper', 0))
|
|
|
|
call airline#extensions#grepper#init(s:ext)
|
|
|
|
call add(loaded_ext, 'grepper')
|
|
|
|
endif
|
|
|
|
|
2017-01-18 03:34:14 +00:00
|
|
|
if (get(g:, 'airline#extensions#xkblayout#enabled', 1) && exists('g:XkbSwitchLib'))
|
|
|
|
call airline#extensions#xkblayout#init(s:ext)
|
|
|
|
call add(loaded_ext, 'xkblayout')
|
|
|
|
endif
|
|
|
|
|
2017-08-26 16:18:45 +00:00
|
|
|
if (get(g:, 'airline#extensions#keymap#enabled', 1) && has('keymap'))
|
|
|
|
call airline#extensions#keymap#init(s:ext)
|
|
|
|
call add(loaded_ext, 'keymap')
|
|
|
|
endif
|
|
|
|
|
2014-09-05 03:02:19 +00:00
|
|
|
if (get(g:, 'airline#extensions#windowswap#enabled', 1) && get(g:, 'loaded_windowswap', 0))
|
|
|
|
call airline#extensions#windowswap#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'windowswap')
|
2014-09-05 03:02:19 +00:00
|
|
|
endif
|
|
|
|
|
2016-05-29 19:44:39 +00:00
|
|
|
if (get(g:, 'airline#extensions#obsession#enabled', 1) && exists('*ObsessionStatus'))
|
|
|
|
call airline#extensions#obsession#init(s:ext)
|
2016-10-24 10:14:30 +00:00
|
|
|
call add(loaded_ext, 'obsession')
|
2016-05-29 19:44:39 +00:00
|
|
|
endif
|
|
|
|
|
2018-09-06 16:12:32 +00:00
|
|
|
if get(g:, 'airline#extensions#vimtex#enabled', 1)
|
|
|
|
runtime autoload/vimtex.vim
|
|
|
|
if exists('*vimtex#init')
|
|
|
|
call airline#extensions#vimtex#init(s:ext)
|
|
|
|
call add(loaded_ext, 'vimtex')
|
|
|
|
endif
|
2017-04-10 12:41:17 +00:00
|
|
|
endif
|
|
|
|
|
2018-01-05 07:12:35 +00:00
|
|
|
if (get(g:, 'airline#extensions#cursormode#enabled', 0))
|
2017-02-23 17:09:37 +00:00
|
|
|
call airline#extensions#cursormode#init(s:ext)
|
|
|
|
call add(loaded_ext, 'cursormode')
|
|
|
|
endif
|
|
|
|
|
2014-04-19 18:38:02 +00: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')
|
2016-10-24 10:14:30 +00:00
|
|
|
if !get(g:, 'airline#extensions#'.name.'#enabled', 1) ||
|
|
|
|
\ index(loaded_ext, name) > -1
|
2014-04-19 18:38:02 +00:00
|
|
|
continue
|
|
|
|
endif
|
|
|
|
try
|
|
|
|
call airline#extensions#{name}#init(s:ext)
|
|
|
|
catch
|
|
|
|
endtry
|
2013-08-22 02:49:19 +00:00
|
|
|
endif
|
2014-04-19 18:38:02 +00:00
|
|
|
endfor
|
|
|
|
endif
|
2013-07-09 13:48:57 +00:00
|
|
|
endfunction
|