2016-01-15 10:38:38 +08:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-18 01:35:06 +08:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-03 01:56:12 +08:00
|
|
|
|
2013-07-02 12:04:59 +08:00
|
|
|
if &cp || v:version < 702 || (exists('g:loaded_airline') && g:loaded_airline)
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_airline = 1
|
2013-08-16 03:54:14 +08:00
|
|
|
|
2015-03-04 11:07:23 +08:00
|
|
|
let s:airline_initialized = 0
|
2013-08-19 02:13:34 +08:00
|
|
|
function! s:init()
|
2015-03-04 11:07:23 +08:00
|
|
|
if s:airline_initialized
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let s:airline_initialized = 1
|
|
|
|
|
2015-02-20 10:08:21 +08:00
|
|
|
call airline#extensions#load()
|
|
|
|
call airline#init#sections()
|
|
|
|
|
2016-01-31 04:17:19 +08:00
|
|
|
let s:theme_in_vimrc = exists('g:airline_theme')
|
|
|
|
if s:theme_in_vimrc
|
2016-01-30 11:24:49 +08:00
|
|
|
try
|
|
|
|
let palette = g:airline#themes#{g:airline_theme}#palette
|
|
|
|
catch
|
|
|
|
echom 'Could not resolve airline theme "' . g:airline_theme . '". Themes have been migrated to github.com/vim-airline/vim-airline-themes.'
|
|
|
|
let g:airline_theme = 'dark'
|
|
|
|
endtry
|
2016-01-31 04:17:19 +08:00
|
|
|
silent call airline#switch_theme(g:airline_theme)
|
|
|
|
else
|
|
|
|
let g:airline_theme = 'dark'
|
|
|
|
silent call s:on_colorscheme_changed()
|
2013-07-07 01:50:57 +08:00
|
|
|
endif
|
2015-02-20 10:08:21 +08:00
|
|
|
|
|
|
|
silent doautocmd User AirlineAfterInit
|
2013-08-19 02:13:34 +08:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:on_window_changed()
|
2016-01-22 00:45:10 +08:00
|
|
|
if pumvisible() && (!&previewwindow || g:airline_exclude_preview)
|
2013-08-25 09:17:16 +08:00
|
|
|
return
|
|
|
|
endif
|
2015-03-04 11:07:23 +08:00
|
|
|
call s:init()
|
2013-08-01 01:37:00 +08:00
|
|
|
call airline#update_statusline()
|
|
|
|
endfunction
|
|
|
|
|
2013-08-18 12:44:13 +08:00
|
|
|
function! s:on_colorscheme_changed()
|
2015-03-04 11:07:23 +08:00
|
|
|
call s:init()
|
2016-01-31 04:17:19 +08:00
|
|
|
if !s:theme_in_vimrc
|
|
|
|
call airline#switch_matching_theme()
|
2013-08-18 12:44:13 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
" couldn't find a match, or theme was defined, just refresh
|
|
|
|
call airline#load_theme()
|
|
|
|
endfunction
|
|
|
|
|
2013-08-22 11:25:22 +08:00
|
|
|
function airline#cmdwinenter(...)
|
2013-08-16 03:54:14 +08:00
|
|
|
call airline#extensions#apply_left_override('Command Line', '')
|
|
|
|
endfunction
|
|
|
|
|
2013-08-15 05:56:55 +08:00
|
|
|
function! s:airline_toggle()
|
|
|
|
if exists("#airline")
|
|
|
|
augroup airline
|
|
|
|
au!
|
|
|
|
augroup END
|
|
|
|
augroup! airline
|
2013-08-31 05:58:29 +08:00
|
|
|
|
|
|
|
if exists("s:stl")
|
2013-10-14 06:01:38 +08:00
|
|
|
let &stl = s:stl
|
2013-08-15 05:56:55 +08:00
|
|
|
endif
|
2013-10-14 06:01:38 +08:00
|
|
|
|
|
|
|
silent doautocmd User AirlineToggledOff
|
2013-08-31 05:58:29 +08:00
|
|
|
else
|
2013-10-14 06:01:38 +08:00
|
|
|
let s:stl = &statusline
|
2013-08-31 05:58:29 +08: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-09-01 05:42:09 +08:00
|
|
|
autocmd VimEnter,WinEnter,BufWinEnter,FileType,BufUnload,VimResized *
|
2013-08-31 05:58:29 +08: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-14 06:01:38 +08:00
|
|
|
|
2015-03-04 11:07:23 +08:00
|
|
|
if s:airline_initialized
|
|
|
|
call s:on_window_changed()
|
|
|
|
endif
|
|
|
|
|
2013-10-14 06:01:38 +08:00
|
|
|
silent doautocmd User AirlineToggledOn
|
2013-08-31 05:58:29 +08: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-20 10:08:21 +08:00
|
|
|
|
2013-08-31 05:58:29 +08:00
|
|
|
function! s:airline_theme(...)
|
|
|
|
if a:0
|
|
|
|
call airline#switch_theme(a:1)
|
|
|
|
else
|
|
|
|
echo g:airline_theme
|
|
|
|
endif
|
|
|
|
endfunction
|
2015-02-20 10:08:21 +08:00
|
|
|
|
2016-01-28 16:49:09 +08:00
|
|
|
function! s:airline_refresh()
|
2016-01-29 22:29:40 +08:00
|
|
|
silent doautocmd User AirlineBeforeRefresh
|
2016-01-28 16:49:09 +08:00
|
|
|
call airline#load_theme()
|
|
|
|
call airline#update_statusline()
|
|
|
|
endfunction
|
|
|
|
|
2015-04-25 02:26:44 +08: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()
|
2016-01-28 20:58:29 +08:00
|
|
|
command! -bar AirlineRefresh call s:airline_refresh()
|
2013-07-11 03:55:55 +08:00
|
|
|
|
2015-02-27 05:15:39 +08:00
|
|
|
call airline#init#bootstrap()
|
2015-03-04 11:07:23 +08:00
|
|
|
call s:airline_toggle()
|