2013-08-15 15:54:14 -04:00
|
|
|
|
" MIT License. Copyright (c) 2013 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
|
|
|
|
|
2013-07-02 07:14:55 -04:00
|
|
|
|
function! s:check_defined(variable, default)
|
|
|
|
|
if !exists(a:variable)
|
|
|
|
|
let {a:variable} = a:default
|
|
|
|
|
endif
|
|
|
|
|
endfunction
|
2013-08-15 15:54:14 -04:00
|
|
|
|
|
2013-07-02 07:14:55 -04:00
|
|
|
|
call s:check_defined('g:airline_left_sep', exists('g:airline_powerline_fonts')?"":">")
|
2013-07-07 18:37:50 -04:00
|
|
|
|
call s:check_defined('g:airline_left_alt_sep', exists('g:airline_powerline_fonts')?"":">")
|
2013-07-02 07:14:55 -04:00
|
|
|
|
call s:check_defined('g:airline_right_sep', exists('g:airline_powerline_fonts')?"":"<")
|
2013-07-07 18:37:50 -04:00
|
|
|
|
call s:check_defined('g:airline_right_alt_sep', exists('g:airline_powerline_fonts')?"":"<")
|
2013-07-03 17:20:49 -04:00
|
|
|
|
call s:check_defined('g:airline_enable_bufferline', 1)
|
2013-07-27 18:15:00 -04:00
|
|
|
|
call s:check_defined('g:airline_enable_branch', 1)
|
2013-07-02 07:14:55 -04:00
|
|
|
|
call s:check_defined('g:airline_enable_syntastic', 1)
|
2013-07-31 16:07:14 -04:00
|
|
|
|
call s:check_defined('g:airline_enable_tagbar', 1)
|
2013-08-13 17:27:21 -04:00
|
|
|
|
call s:check_defined('g:airline_enable_csv', 1)
|
2013-08-19 09:22:24 -04:00
|
|
|
|
call s:check_defined('g:airline_enable_hunks', 0)
|
2013-07-24 21:48:23 -04:00
|
|
|
|
call s:check_defined('g:airline_detect_iminsert', 0)
|
2013-07-22 17:23:41 -04:00
|
|
|
|
call s:check_defined('g:airline_detect_modified', 1)
|
|
|
|
|
call s:check_defined('g:airline_detect_paste', 1)
|
2013-08-06 20:17:33 -04:00
|
|
|
|
call s:check_defined('g:airline_detect_whitespace', 1)
|
2013-08-09 16:12:56 -04:00
|
|
|
|
call s:check_defined('g:airline_branch_empty_message', '')
|
2013-07-27 18:15:00 -04:00
|
|
|
|
call s:check_defined('g:airline_branch_prefix', exists('g:airline_powerline_fonts')?' ':'')
|
2013-07-02 07:14:55 -04:00
|
|
|
|
call s:check_defined('g:airline_readonly_symbol', exists('g:airline_powerline_fonts')?'':'RO')
|
|
|
|
|
call s:check_defined('g:airline_linecolumn_prefix', exists('g:airline_powerline_fonts')?' ':':')
|
2013-07-07 11:48:44 -04:00
|
|
|
|
call s:check_defined('g:airline_paste_symbol', (exists('g:airline_powerline_fonts') ? ' ' : '').'PASTE')
|
2013-08-11 10:30:02 -04:00
|
|
|
|
call s:check_defined('g:airline_inactive_collapse', 1)
|
2013-07-02 07:14:55 -04:00
|
|
|
|
call s:check_defined('g:airline_exclude_filenames', ['DebuggerWatch','DebuggerStack','DebuggerStatus'])
|
2013-07-08 22:52:07 -04:00
|
|
|
|
call s:check_defined('g:airline_exclude_filetypes', [])
|
2013-07-14 15:44:16 -04:00
|
|
|
|
call s:check_defined('g:airline_exclude_preview', 0)
|
2013-08-03 11:14:02 -04:00
|
|
|
|
call s:check_defined('g:airline_statusline_funcrefs', [])
|
2013-07-25 18:29:18 -04:00
|
|
|
|
call s:check_defined('g:airline_exclude_funcrefs', [])
|
2013-06-30 15:29:35 -04:00
|
|
|
|
|
2013-07-04 11:39:49 -04:00
|
|
|
|
call s:check_defined('g:airline_mode_map', {
|
2013-08-11 10:30:02 -04:00
|
|
|
|
\ '__' : '------',
|
2013-07-04 11:39:49 -04:00
|
|
|
|
\ 'n' : 'NORMAL',
|
|
|
|
|
\ 'i' : 'INSERT',
|
2013-07-26 13:21:43 -04:00
|
|
|
|
\ 'R' : 'REPLACE',
|
2013-07-04 11:39:49 -04:00
|
|
|
|
\ 'v' : 'VISUAL',
|
|
|
|
|
\ 'V' : 'V-LINE',
|
2013-08-15 22:17:59 -04:00
|
|
|
|
\ 'c' : 'COMMAND',
|
2013-07-26 13:21:43 -04:00
|
|
|
|
\ '' : 'V-BLOCK',
|
2013-08-09 08:05:00 -04:00
|
|
|
|
\ 's' : 'SELECT',
|
|
|
|
|
\ 'S' : 'S-LINE',
|
|
|
|
|
\ '' : 'S-BLOCK',
|
2013-07-04 11:39:49 -04:00
|
|
|
|
\ })
|
|
|
|
|
|
2013-08-18 00:44:13 -04:00
|
|
|
|
call s:check_defined('g:airline_theme_map', {
|
|
|
|
|
\ 'Tomorrow.*': 'tomorrow',
|
|
|
|
|
\ 'mo[l|n]okai': 'molokai',
|
|
|
|
|
\ 'wombat.*': 'wombat',
|
2013-08-18 10:13:47 -04:00
|
|
|
|
\ '.*solarized.*': 'solarized',
|
2013-08-18 00:44:13 -04:00
|
|
|
|
\ })
|
|
|
|
|
|
2013-08-11 09:42:47 -04:00
|
|
|
|
call s:check_defined('g:airline_section_a', '%{get(w:, "airline_current_mode", "")}')
|
2013-08-18 13:22:35 -04:00
|
|
|
|
call s:check_defined('g:airline_section_b', '')
|
2013-08-05 23:16:49 -04:00
|
|
|
|
call s:check_defined('g:airline_section_c', '%f%m')
|
2013-08-13 23:53:29 -04:00
|
|
|
|
call s:check_defined('g:airline_section_gutter', '%=')
|
2013-08-05 23:16:49 -04:00
|
|
|
|
call s:check_defined('g:airline_section_x', "%{strlen(&filetype)>0?&filetype:''}")
|
|
|
|
|
call s:check_defined('g:airline_section_y', "%{strlen(&fenc)>0?&fenc:''}%{strlen(&ff)>0?'['.&ff.']':''}")
|
|
|
|
|
call s:check_defined('g:airline_section_z', '%3p%% '.g:airline_linecolumn_prefix.'%3l:%3c')
|
2013-08-13 16:43:04 -04:00
|
|
|
|
call s:check_defined('g:airline_section_warning', '')
|
2013-08-05 23:16:49 -04:00
|
|
|
|
|
2013-07-07 08:58:39 -04: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()
|
2013-07-07 08:58:39 -04:00
|
|
|
|
if !s:airline_initialized
|
2013-08-18 14:13:34 -04:00
|
|
|
|
let s:airline_initialized = 1
|
|
|
|
|
|
2013-07-07 08:41:36 -04:00
|
|
|
|
call airline#extensions#load()
|
2013-08-18 00:44:13 -04:00
|
|
|
|
|
|
|
|
|
let s:airline_theme_defined = exists('g:airline_theme')
|
|
|
|
|
let g:airline_theme = get(g:, 'airline_theme', 'dark')
|
2013-08-18 15:02:14 -04:00
|
|
|
|
call airline#switch_theme(g:airline_theme)
|
2013-07-06 13:50:57 -04:00
|
|
|
|
endif
|
2013-08-18 14:13:34 -04:00
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
function! s:on_window_changed()
|
|
|
|
|
call <sid>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()
|
2013-08-18 14:13:34 -04:00
|
|
|
|
call <sid>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-15 15:54:14 -04:00
|
|
|
|
function airline#cmdwinenter()
|
|
|
|
|
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
|
|
|
|
|
if exists("s:stl")
|
|
|
|
|
let &stl = s:stl
|
|
|
|
|
endif
|
|
|
|
|
else
|
|
|
|
|
let s:stl = &stl
|
|
|
|
|
augroup airline
|
2013-08-15 15:02:54 -04:00
|
|
|
|
autocmd!
|
2013-08-15 15:54:14 -04:00
|
|
|
|
|
|
|
|
|
autocmd CmdwinEnter *
|
|
|
|
|
\ call add(g:airline_statusline_funcrefs, function('airline#cmdwinenter'))
|
|
|
|
|
\ | call <sid>on_window_changed()
|
|
|
|
|
autocmd CmdwinLeave * call remove(g:airline_statusline_funcrefs, -1)
|
|
|
|
|
|
2013-08-18 00:44:13 -04:00
|
|
|
|
autocmd ColorScheme * call <sid>on_colorscheme_changed()
|
2013-08-15 15:02:54 -04:00
|
|
|
|
autocmd WinEnter,BufWinEnter,FileType,BufUnload,ShellCmdPost *
|
|
|
|
|
\ call <sid>on_window_changed()
|
2013-08-14 17:56:55 -04:00
|
|
|
|
augroup END
|
2013-08-15 15:02:54 -04:00
|
|
|
|
if s:airline_initialized
|
|
|
|
|
call <sid>on_window_changed()
|
|
|
|
|
endif
|
2013-08-14 17:56:55 -04:00
|
|
|
|
endif
|
|
|
|
|
endfunction
|
|
|
|
|
|
2013-07-10 15:55:55 -04:00
|
|
|
|
function! s:get_airline_themes(a, l, p)
|
2013-07-10 18:17:39 -04:00
|
|
|
|
let files = split(globpath(&rtp, 'autoload/airline/themes/'.a:a.'*'), "\n")
|
2013-07-10 15:55:55 -04:00
|
|
|
|
return map(files, 'fnamemodify(v:val, ":t:r")')
|
|
|
|
|
endfunction
|
2013-07-10 21:40:38 -04:00
|
|
|
|
function! s:airline_theme(...)
|
|
|
|
|
if a:0
|
2013-08-17 13:35:06 -04:00
|
|
|
|
call airline#switch_theme(a:1)
|
2013-07-10 23:03:27 -04:00
|
|
|
|
else
|
|
|
|
|
echo g:airline_theme
|
2013-07-10 21:40:38 -04:00
|
|
|
|
endif
|
|
|
|
|
endfunction
|
|
|
|
|
command! -nargs=? -complete=customlist,<sid>get_airline_themes AirlineTheme call <sid>airline_theme(<f-args>)
|
2013-08-08 10:42:27 -04:00
|
|
|
|
command! AirlineToggleWhitespace call airline#extensions#whitespace#toggle()
|
2013-08-14 17:56:55 -04:00
|
|
|
|
command! AirlineToggle call <sid>airline_toggle()
|
2013-07-10 15:55:55 -04:00
|
|
|
|
|
2013-08-14 17:56:55 -04:00
|
|
|
|
call <sid>airline_toggle()
|
2013-08-17 13:35:06 -04:00
|
|
|
|
|