2019-03-25 11:27:10 +00:00
" MIT License. Copyright (c) 2013-2019 Bailey Ling, Christian Brabandt et al.
2013-08-17 17:35:06 +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-07-02 04:04:59 +00:00
if &cp | | v :version < 702 | | ( exists ( 'g:loaded_airline' ) && g :loaded_airline )
finish
endif
let g :loaded_airline = 1
2013-08-15 19:54:14 +00:00
2015-03-04 03:07:23 +00:00
let s :airline_initialized = 0
2013-08-18 18:13:34 +00:00
function ! s :init ( )
2015-03-04 03:07:23 +00:00
if s :airline_initialized
return
endif
let s :airline_initialized = 1
2015-02-20 02:08:21 +00:00
call airline #extensions #load ( )
call airline #init #sections ( )
2016-01-30 20:17:19 +00:00
let s :theme_in_vimrc = exists ( 'g:airline_theme' )
if s :theme_in_vimrc
2016-01-30 03:24:49 +00:00
try
let palette = g :airline #themes #{g :airline_theme }#palette
catch
2018-11-13 20:36:50 +00:00
call airline #util #warning ( printf ( 'Could not resolve airline theme "%s". Themes have been migrated to github.com/vim-airline/vim-airline-themes.' , g :airline_theme ) )
2016-01-30 03:24:49 +00:00
let g :airline_theme = 'dark'
endtry
2016-01-30 20:17:19 +00:00
silent call airline #switch_theme ( g :airline_theme )
else
let g :airline_theme = 'dark'
silent call s :on_colorscheme_changed ( )
2013-07-06 17:50:57 +00:00
endif
2015-02-20 02:08:21 +00:00
2018-09-25 14:03:30 +00:00
call airline #util #doautocmd ( 'AirlineAfterInit' )
2013-08-18 18:13:34 +00:00
endfunction
2018-06-14 17:31:17 +00:00
let s :active_winnr = -1
2013-08-18 18:13:34 +00:00
function ! s :on_window_changed ( )
2018-06-14 17:31:17 +00:00
let s :active_winnr = winnr ( )
2016-01-21 16:45:10 +00:00
if pumvisible ( ) && ( ! &previewwindow | | g :airline_exclude_preview )
2013-08-25 01:17:16 +00:00
return
endif
2016-04-20 19:06:04 +00:00
" Handle each window only once, since we might come here several times for
" different autocommands.
2018-06-14 17:31:17 +00:00
let l :key = [bufnr ( '%' ) , s :active_winnr , winnr ( '$' ) , tabpagenr ( ) , &ft ]
2016-09-14 17:05:57 +00:00
if get ( g :, 'airline_last_window_changed' , []) = = l :key
2018-06-14 17:31:17 +00:00
\ && &stl is # '%!airline#statusline(' .s :active_winnr .')'
2017-03-20 07:56:35 +00:00
\ && &ft ! ~ ? 'gitcommit'
2017-03-20 07:36:54 +00:00
" fugitive is special, it changes names and filetypes several times,
" make sure the caching does not get into its way
2016-04-20 19:06:04 +00:00
return
endif
2016-09-14 17:05:57 +00:00
let g :airline_last_window_changed = l :key
2015-03-04 03:07:23 +00:00
call s :init ( )
2013-07-31 17:37:00 +00:00
call airline #update_statusline ( )
endfunction
2019-02-03 16:30:55 +00:00
function ! s :on_cursor_moved ( )
if winnr ( ) ! = s :active_winnr
2019-02-04 07:23:58 +00:00
call s :on_window_changed ( )
2019-02-03 16:30:55 +00:00
endif
2019-02-04 07:23:58 +00:00
call airline #update_tabline ( )
2019-02-03 16:30:55 +00:00
endfunction
2013-08-18 04:44:13 +00:00
function ! s :on_colorscheme_changed ( )
2015-03-04 03:07:23 +00:00
call s :init ( )
2017-02-28 07:33:44 +00:00
unlet ! g :airline #highlighter #normal_fg_hi
2017-08-11 09:26:35 +00:00
call airline #highlighter #reset_hlcache ( )
2016-02-05 21:19:48 +00:00
let g :airline_gui_mode = airline #init #gui_mode ( )
2016-01-30 20:17:19 +00:00
if ! s :theme_in_vimrc
call airline #switch_matching_theme ( )
2013-08-18 04:44:13 +00:00
endif
" couldn't find a match, or theme was defined, just refresh
call airline #load_theme ( )
endfunction
2016-04-20 19:10:28 +00:00
function ! airline #cmdwinenter ( ...)
2013-08-15 19:54:14 +00:00
call airline #extensions #apply_left_override ( 'Command Line' , '' )
endfunction
2013-08-14 21:56:55 +00:00
function ! s :airline_toggle ( )
if exists ( "#airline" )
augroup airline
au !
augroup END
augroup ! airline
2013-08-30 21:58:29 +00:00
if exists ( "s:stl" )
2013-10-13 22:01:38 +00:00
let &stl = s :stl
2013-08-14 21:56:55 +00:00
endif
2019-02-03 16:30:55 +00:00
if exists ( "s:tal" )
let [&tal , &showtabline ] = s :tal
endif
2017-08-11 10:05:39 +00:00
call airline #highlighter #reset_hlcache ( )
2013-10-13 22:01:38 +00:00
2018-09-25 14:03:30 +00:00
call airline #util #doautocmd ( 'AirlineToggledOff' )
2013-08-30 21:58:29 +00:00
else
2013-10-13 22:01:38 +00:00
let s :stl = &statusline
2019-02-03 16:30:55 +00:00
let s :tal = [&tabline , &showtabline ]
2013-08-30 21:58:29 +00: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' )
2016-02-05 21:19:48 +00:00
autocmd GUIEnter , ColorScheme * call < sid > on_colorscheme_changed ( )
2018-04-12 08:23:49 +00:00
if exists ( "##OptionSet" )
" Make sure that g_airline_gui_mode is refreshed
autocmd OptionSet termguicolors call < sid > on_colorscheme_changed ( )
2018-06-04 20:44:46 +00:00
endif
2018-10-03 10:29:23 +00:00
" Set all statuslines to inactive
2018-10-16 08:49:17 +00:00
autocmd FocusLost * call airline #update_statusline_focuslost ( )
2018-01-04 19:07:15 +00:00
" Refresh airline for :syntax off
2018-01-21 04:27:32 +00:00
autocmd SourcePre */syntax/ syntax .vim
\ call airline #extensions #tabline #buffers #invalidate ( )
2017-03-16 12:13:16 +00:00
autocmd VimEnter , WinEnter , BufWinEnter , FileType , BufUnload *
2013-08-30 21:58:29 +00:00
\ call < sid > on_window_changed ( )
2018-06-09 08:50:25 +00:00
if exists ( '##CompleteDone' )
2017-02-11 18:59:58 +00:00
autocmd CompleteDone * call < sid > on_window_changed ( )
endif
2018-06-14 17:31:17 +00:00
" non-trivial number of external plugins use eventignore=all, so we need to account for that
2019-02-03 16:30:55 +00:00
autocmd CursorMoved * call < sid > on_cursor_moved ( )
2013-08-30 21:58:29 +00:00
2018-11-07 09:38:34 +00:00
autocmd VimResized * unlet ! w :airline_lastmode | :call < sid > airline_refresh ( )
2018-11-08 06:54:01 +00:00
if exists ( '*timer_start' ) && exists ( '*funcref' )
" do not trigger FocusGained on startup, it might erase the intro screen (see #1817)
" needs funcref() (needs 7.4.2137) and timers (7.4.1578)
2018-11-07 09:38:34 +00:00
let Handler = funcref ( '<sid>FocusGainedHandler' )
let s :timer = timer_start ( 5000 , Handler )
else
autocmd FocusGained * unlet ! w :airline_lastmode | :call < sid > airline_refresh ( )
endif
2018-11-22 07:31:14 +00:00
if exists ( "##TerminalOpen" )
" Using the same function with the TermOpen autocommand
" breaks for Neovim see #1828, looks like a neovim bug.
autocmd TerminalOpen * :call airline #load_theme ( ) " reload current theme for Terminal, forces the terminal extension to be loaded
2018-11-20 14:28:29 +00:00
endif
2016-06-23 15:52:17 +00:00
autocmd TabEnter * :unlet ! w :airline_lastmode | let w :airline_active = 1
2013-08-30 21:58:29 +00:00
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 ( )
2019-02-04 07:25:45 +00:00
autocmd User AirlineModeChanged nested call airline #mode_changed ( )
2019-02-03 16:30:55 +00:00
if get ( g :, 'airline_statusline_ontop' , 0 )
" Force update of tabline more often
2019-02-04 07:23:58 +00:00
autocmd InsertEnter , InsertLeave , CursorMovedI * :call airline #update_tabline ( )
2019-02-03 16:30:55 +00:00
endif
2013-08-30 21:58:29 +00:00
augroup END
2013-10-13 22:01:38 +00:00
2017-07-02 18:42:32 +00:00
if &laststatus < 2
set laststatus = 2
endif
2015-03-04 03:07:23 +00:00
if s :airline_initialized
call s :on_window_changed ( )
endif
2018-09-25 14:03:30 +00:00
call airline #util #doautocmd ( 'AirlineToggledOn' )
2013-08-30 21:58:29 +00:00
endif
endfunction
function ! s :get_airline_themes ( a , l , p )
2018-11-13 21:14:13 +00:00
return airline #util #themes ( a :a )
2013-08-30 21:58:29 +00:00
endfunction
2015-02-20 02:08:21 +00:00
2013-08-30 21:58:29 +00:00
function ! s :airline_theme ( ...)
if a :0
2018-11-14 06:36:45 +00:00
try
call airline #switch_theme ( a :1 )
catch " discard error
endtry
2013-08-30 21:58:29 +00:00
else
echo g :airline_theme
endif
endfunction
2015-02-20 02:08:21 +00:00
2016-01-28 08:49:09 +00:00
function ! s :airline_refresh ( )
2016-07-24 07:58:52 +00:00
if ! exists ( "#airline" )
" disabled
return
endif
2018-09-25 14:03:30 +00:00
call airline #util #doautocmd ( 'AirlineBeforeRefresh' )
2017-08-14 06:06:53 +00:00
call airline #highlighter #reset_hlcache ( )
2016-01-28 08:49:09 +00:00
call airline #load_theme ( )
call airline #update_statusline ( )
2019-02-04 07:23:58 +00:00
call airline #update_tabline ( )
2016-01-28 08:49:09 +00:00
endfunction
2018-11-07 09:38:34 +00:00
function ! s :FocusGainedHandler ( timer )
if exists ( "s:timer" ) && a :timer = = s :timer
augroup airline
au FocusGained * unlet ! w :airline_lastmode | :call < sid > airline_refresh ( )
augroup END
endif
endfu
2018-11-14 07:06:39 +00:00
function ! s :airline_extensions ( )
let loaded = airline #extensions #get_loaded_extensions ( )
let files = split ( globpath ( &rtp , "autoload/airline/extensions/*.vim" ) , "\n" )
call map ( files , 'fnamemodify(v:val, ":t:r")' )
if ! empty ( files )
echohl Title
2019-03-26 07:41:36 +00:00
echo printf ( "%-15s\t%s\t%s" , "Extension" , "Extern" , "Status" )
2018-11-14 07:06:39 +00:00
echohl Normal
endif
for ext in sort ( files )
2019-03-26 07:41:36 +00:00
let indx = match ( loaded , '^' .ext .'\*\?$' )
let external = ( indx > -1 && loaded [indx ] = ~ '\*$' )
echo printf ( "%-15s\t%s\t%sloaded" , ext , external , indx = = -1 ? 'not ' : '' )
2018-11-14 07:06:39 +00:00
endfor
endfunction
2015-04-24 18:26:44 +00: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 ( )
2018-11-14 07:06:39 +00:00
command ! - bar AirlineToggle call s :airline_toggle ( )
2016-01-28 12:58:29 +00:00
command ! - bar AirlineRefresh call s :airline_refresh ( )
2018-11-14 07:06:39 +00:00
command ! AirlineExtensions call s :airline_extensions ( )
2013-07-10 19:55:55 +00:00
2015-02-26 21:15:39 +00:00
call airline #init #bootstrap ( )
2015-03-04 03:07:23 +00:00
call s :airline_toggle ( )