2015-02-13 18:46:23 -05:00
|
|
|
" MIT License. Copyright (c) 2013-2015 Bailey Ling.
|
2013-08-17 13:35:06 -04:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-02 13:56:12 -04:00
|
|
|
|
2013-07-02 00:04:59 -04:00
|
|
|
if &cp || v:version < 702 || (exists('g:loaded_airline') && g:loaded_airline)
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_airline = 1
|
2013-08-15 15:54:14 -04:00
|
|
|
|
2015-03-03 22:07:23 -05:00
|
|
|
let s:airline_initialized = 0
|
2013-08-18 00:44:13 -04:00
|
|
|
let s:airline_theme_defined = 0
|
2013-08-18 14:13:34 -04:00
|
|
|
function! s:init()
|
2015-03-03 22:07:23 -05:00
|
|
|
if s:airline_initialized
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let s:airline_initialized = 1
|
|
|
|
|
2015-02-19 21:08:21 -05:00
|
|
|
call airline#extensions#load()
|
|
|
|
call airline#init#sections()
|
|
|
|
|
|
|
|
let s:airline_theme_defined = exists('g:airline_theme')
|
|
|
|
if s:airline_theme_defined || !airline#switch_matching_theme()
|
|
|
|
let g:airline_theme = get(g:, 'airline_theme', 'dark')
|
|
|
|
call airline#switch_theme(g:airline_theme)
|
2013-07-06 13:50:57 -04:00
|
|
|
endif
|
2015-02-19 21:08:21 -05:00
|
|
|
|
|
|
|
silent doautocmd User AirlineAfterInit
|
2013-08-18 14:13:34 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:on_window_changed()
|
2013-08-24 21:17:16 -04:00
|
|
|
if pumvisible()
|
|
|
|
return
|
|
|
|
endif
|
2015-03-03 22:07:23 -05:00
|
|
|
call s:init()
|
2013-07-31 13:37:00 -04:00
|
|
|
call airline#update_statusline()
|
|
|
|
endfunction
|
|
|
|
|
2013-08-18 00:44:13 -04:00
|
|
|
function! s:on_colorscheme_changed()
|
2015-03-03 22:07:23 -05:00
|
|
|
call s:init()
|
2013-08-18 00:44:13 -04:00
|
|
|
if !s:airline_theme_defined
|
|
|
|
if airline#switch_matching_theme()
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
" couldn't find a match, or theme was defined, just refresh
|
|
|
|
call airline#load_theme()
|
|
|
|
endfunction
|
|
|
|
|
2013-08-21 23:25:22 -04:00
|
|
|
function airline#cmdwinenter(...)
|
2013-08-15 15:54:14 -04:00
|
|
|
call airline#extensions#apply_left_override('Command Line', '')
|
|
|
|
endfunction
|
|
|
|
|
2013-08-14 17:56:55 -04:00
|
|
|
function! s:airline_toggle()
|
|
|
|
if exists("#airline")
|
|
|
|
augroup airline
|
|
|
|
au!
|
|
|
|
augroup END
|
|
|
|
augroup! airline
|
2013-08-30 17:58:29 -04:00
|
|
|
|
|
|
|
if exists("s:stl")
|
2013-10-13 18:01:38 -04:00
|
|
|
let &stl = s:stl
|
2013-08-14 17:56:55 -04:00
|
|
|
endif
|
2013-10-13 18:01:38 -04:00
|
|
|
|
|
|
|
silent doautocmd User AirlineToggledOff
|
2013-08-30 17:58:29 -04:00
|
|
|
else
|
2013-10-13 18:01:38 -04:00
|
|
|
let s:stl = &statusline
|
2013-08-30 17:58:29 -04:00
|
|
|
augroup airline
|
|
|
|
autocmd!
|
|
|
|
|
|
|
|
autocmd CmdwinEnter *
|
|
|
|
\ call airline#add_statusline_func('airline#cmdwinenter')
|
|
|
|
\ | call <sid>on_window_changed()
|
|
|
|
autocmd CmdwinLeave * call airline#remove_statusline_func('airline#cmdwinenter')
|
|
|
|
|
|
|
|
autocmd ColorScheme * call <sid>on_colorscheme_changed()
|
2013-08-31 17:42:09 -04:00
|
|
|
autocmd VimEnter,WinEnter,BufWinEnter,FileType,BufUnload,VimResized *
|
2013-08-30 17:58:29 -04:00
|
|
|
\ call <sid>on_window_changed()
|
|
|
|
|
|
|
|
autocmd BufWritePost */autoload/airline/themes/*.vim
|
|
|
|
\ exec 'source '.split(globpath(&rtp, 'autoload/airline/themes/'.g:airline_theme.'.vim', 1), "\n")[0]
|
|
|
|
\ | call airline#load_theme()
|
|
|
|
augroup END
|
2013-10-13 18:01:38 -04:00
|
|
|
|
2015-03-03 22:07:23 -05:00
|
|
|
if s:airline_initialized
|
|
|
|
call s:on_window_changed()
|
|
|
|
endif
|
|
|
|
|
2013-10-13 18:01:38 -04:00
|
|
|
silent doautocmd User AirlineToggledOn
|
2013-08-30 17:58:29 -04:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:get_airline_themes(a, l, p)
|
|
|
|
let files = split(globpath(&rtp, 'autoload/airline/themes/'.a:a.'*'), "\n")
|
|
|
|
return map(files, 'fnamemodify(v:val, ":t:r")')
|
|
|
|
endfunction
|
2015-02-19 21:08:21 -05:00
|
|
|
|
2013-08-30 17:58:29 -04:00
|
|
|
function! s:airline_theme(...)
|
|
|
|
if a:0
|
|
|
|
call airline#switch_theme(a:1)
|
|
|
|
else
|
|
|
|
echo g:airline_theme
|
|
|
|
endif
|
|
|
|
endfunction
|
2015-02-19 21:08:21 -05:00
|
|
|
|
2015-04-24 14:26:44 -04:00
|
|
|
command! -bar -nargs=? -complete=customlist,<sid>get_airline_themes AirlineTheme call <sid>airline_theme(<f-args>)
|
|
|
|
command! -bar AirlineToggleWhitespace call airline#extensions#whitespace#toggle()
|
|
|
|
command! -bar AirlineToggle call s:airline_toggle()
|
|
|
|
command! -bar AirlineRefresh call airline#load_theme() | call airline#update_statusline()
|
2013-07-10 15:55:55 -04:00
|
|
|
|
2015-02-26 16:15:39 -05:00
|
|
|
call airline#init#bootstrap()
|
2015-03-03 22:07:23 -05:00
|
|
|
call s:airline_toggle()
|
2015-02-26 16:15:39 -05:00
|
|
|
|
2015-02-19 21:08:21 -05:00
|
|
|
autocmd VimEnter * call airline#deprecation#check()
|
2015-03-03 22:07:23 -05:00
|
|
|
|