2013-08-15 19:54:14 +00:00
|
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-08-17 17:35:06 +00:00
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-02 17:56:12 +00:00
|
|
|
|
|
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
|
|
|
|
|
2013-08-28 00:28:52 +00:00
|
|
|
|
" autocmd VimEnter * call airline#deprecation#check()
|
|
|
|
|
|
2013-07-02 11:14:55 +00:00
|
|
|
|
function! s:check_defined(variable, default)
|
|
|
|
|
if !exists(a:variable)
|
|
|
|
|
let {a:variable} = a:default
|
|
|
|
|
endif
|
|
|
|
|
endfunction
|
2013-08-15 19:54:14 +00:00
|
|
|
|
|
2013-08-22 14:14:17 +00:00
|
|
|
|
call s:check_defined('g:airline_left_sep', get(g:, 'airline_powerline_fonts', 0)?"":">")
|
|
|
|
|
call s:check_defined('g:airline_left_alt_sep', get(g:, 'airline_powerline_fonts', 0)?"":">")
|
|
|
|
|
call s:check_defined('g:airline_right_sep', get(g:, 'airline_powerline_fonts', 0)?"":"<")
|
|
|
|
|
call s:check_defined('g:airline_right_alt_sep', get(g:, 'airline_powerline_fonts', 0)?"":"<")
|
2013-07-22 21:23:41 +00:00
|
|
|
|
call s:check_defined('g:airline_detect_modified', 1)
|
|
|
|
|
call s:check_defined('g:airline_detect_paste', 1)
|
2013-08-27 03:07:14 +00:00
|
|
|
|
call s:check_defined('g:airline_detect_iminsert', 0)
|
2013-08-11 14:30:02 +00:00
|
|
|
|
call s:check_defined('g:airline_inactive_collapse', 1)
|
2013-07-02 11:14:55 +00:00
|
|
|
|
call s:check_defined('g:airline_exclude_filenames', ['DebuggerWatch','DebuggerStack','DebuggerStatus'])
|
2013-07-09 02:52:07 +00:00
|
|
|
|
call s:check_defined('g:airline_exclude_filetypes', [])
|
2013-07-14 19:44:16 +00:00
|
|
|
|
call s:check_defined('g:airline_exclude_preview', 0)
|
2013-06-30 19:29:35 +00:00
|
|
|
|
|
2013-08-27 03:34:02 +00:00
|
|
|
|
call s:check_defined('g:airline_symbols', {})
|
|
|
|
|
call extend(g:airline_symbols, {
|
|
|
|
|
\ 'paste': get(g:, 'airline_paste_symbol', g:airline_left_alt_sep.' PASTE'),
|
|
|
|
|
\ 'readonly': get(g:, 'airline_readonly_symbol', get(g:, 'airline_powerline_fonts', 0) ? '' : 'RO'),
|
|
|
|
|
\ 'whitespace': get(g:, 'airline_powerline_fonts', 0) ? '✹' : '!',
|
|
|
|
|
\ 'linenr': get(g:, 'airline_linecolumn_prefix', get(g:, 'airline_powerline_fonts', 0) ? '' : ':' ),
|
|
|
|
|
\ 'branch': get(g:, 'airline_branch_prefix', get(g:, 'airline_powerline_fonts', 0) ? '' : ''),
|
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
2013-08-27 18:08:50 +00:00
|
|
|
|
call s:check_defined('g:airline_parts', {})
|
|
|
|
|
call extend(g:airline_parts, {
|
2013-08-27 17:47:31 +00:00
|
|
|
|
\ 'mode': '%{get(w:,"airline_current_mode","")}',
|
2013-08-27 18:08:50 +00:00
|
|
|
|
\ 'iminsert': '%{airline#parts#iminsert()}',
|
|
|
|
|
\ 'paste': '%{airline#parts#paste()}',
|
|
|
|
|
\ 'readonly': '%#airline_file#%{airline#parts#readonly()}',
|
2013-08-27 18:39:34 +00:00
|
|
|
|
\ 'ffenc': '%{printf("%s%s",&fenc,strlen(&ff)>0?"[".&ff."]":"")}',
|
2013-08-27 23:24:01 +00:00
|
|
|
|
\ 'file': '%f%m',
|
2013-08-27 23:22:26 +00:00
|
|
|
|
\ 'hunks': '',
|
|
|
|
|
\ 'branch': '',
|
2013-08-27 23:25:55 +00:00
|
|
|
|
\ 'tagbar': '',
|
2013-08-27 23:38:34 +00:00
|
|
|
|
\ 'syntastic': '',
|
|
|
|
|
\ 'whitespace': '',
|
2013-08-27 17:47:31 +00:00
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
|
|
|
|
call s:check_defined('g:airline_mode_map', {})
|
|
|
|
|
call extend(g:airline_mode_map, {
|
2013-08-11 14:30:02 +00:00
|
|
|
|
\ '__' : '------',
|
2013-07-04 15:39:49 +00:00
|
|
|
|
\ 'n' : 'NORMAL',
|
|
|
|
|
\ 'i' : 'INSERT',
|
2013-07-26 17:21:43 +00:00
|
|
|
|
\ 'R' : 'REPLACE',
|
2013-07-04 15:39:49 +00:00
|
|
|
|
\ 'v' : 'VISUAL',
|
|
|
|
|
\ 'V' : 'V-LINE',
|
2013-08-16 02:17:59 +00:00
|
|
|
|
\ 'c' : 'COMMAND',
|
2013-07-26 17:21:43 +00:00
|
|
|
|
\ '' : 'V-BLOCK',
|
2013-08-09 12:05:00 +00:00
|
|
|
|
\ 's' : 'SELECT',
|
|
|
|
|
\ 'S' : 'S-LINE',
|
|
|
|
|
\ '' : 'S-BLOCK',
|
2013-08-27 17:47:31 +00:00
|
|
|
|
\ }, 'keep')
|
2013-07-04 15:39:49 +00:00
|
|
|
|
|
2013-08-27 17:47:31 +00:00
|
|
|
|
call s:check_defined('g:airline_theme_map', {})
|
|
|
|
|
call extend(g:airline_theme_map, {
|
2013-08-18 04:44:13 +00:00
|
|
|
|
\ 'Tomorrow.*': 'tomorrow',
|
|
|
|
|
\ 'mo[l|n]okai': 'molokai',
|
|
|
|
|
\ 'wombat.*': 'wombat',
|
2013-08-18 14:13:47 +00:00
|
|
|
|
\ '.*solarized.*': 'solarized',
|
2013-08-27 17:47:31 +00:00
|
|
|
|
\ }, 'keep')
|
2013-08-18 04:44:13 +00:00
|
|
|
|
|
2013-07-07 12:58:39 +00:00
|
|
|
|
let s:airline_initialized = 0
|
2013-08-18 04:44:13 +00:00
|
|
|
|
let s:airline_theme_defined = 0
|
2013-08-18 18:13:34 +00:00
|
|
|
|
function! s:init()
|
2013-07-07 12:58:39 +00:00
|
|
|
|
if !s:airline_initialized
|
2013-08-18 18:13:34 +00:00
|
|
|
|
let s:airline_initialized = 1
|
|
|
|
|
|
2013-07-07 12:41:36 +00:00
|
|
|
|
call airline#extensions#load()
|
2013-08-27 23:22:26 +00:00
|
|
|
|
call s:check_defined('g:airline_section_a', (g:airline_parts.mode).(g:airline_parts.paste).(g:airline_parts.iminsert))
|
|
|
|
|
call s:check_defined('g:airline_section_b', (g:airline_parts.hunks).(g:airline_parts.branch))
|
2013-08-27 23:57:18 +00:00
|
|
|
|
call s:check_defined('g:airline_section_c', '%<'.(g:airline_parts.file))
|
2013-08-27 23:22:26 +00:00
|
|
|
|
call s:check_defined('g:airline_section_gutter', ' '.(g:airline_parts.readonly).'%=')
|
2013-08-27 23:25:55 +00:00
|
|
|
|
call s:check_defined('g:airline_section_x', (g:airline_parts.tagbar).'%{&filetype}')
|
2013-08-27 23:22:26 +00:00
|
|
|
|
call s:check_defined('g:airline_section_y', g:airline_parts.ffenc)
|
2013-08-27 23:57:18 +00:00
|
|
|
|
call s:check_defined('g:airline_section_z', '%3p%% %{g:airline_symbols.linenr} %3l:%3c ')
|
|
|
|
|
call s:check_defined('g:airline_section_warning', (g:airline_parts.syntastic).(g:airline_parts.whitespace))
|
2013-08-18 04:44:13 +00:00
|
|
|
|
|
|
|
|
|
let s:airline_theme_defined = exists('g:airline_theme')
|
2013-08-20 01:46:44 +00:00
|
|
|
|
if s:airline_theme_defined || !airline#switch_matching_theme()
|
2013-08-19 18:17:06 +00:00
|
|
|
|
let g:airline_theme = get(g:, 'airline_theme', 'dark')
|
|
|
|
|
call airline#switch_theme(g:airline_theme)
|
|
|
|
|
endif
|
2013-07-06 17:50:57 +00:00
|
|
|
|
endif
|
2013-08-18 18:13:34 +00:00
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
function! s:on_window_changed()
|
2013-08-25 01:17:16 +00:00
|
|
|
|
if pumvisible()
|
|
|
|
|
return
|
|
|
|
|
endif
|
2013-08-18 18:13:34 +00:00
|
|
|
|
call <sid>init()
|
2013-07-31 17:37:00 +00:00
|
|
|
|
call airline#update_statusline()
|
|
|
|
|
endfunction
|
|
|
|
|
|
2013-08-18 04:44:13 +00:00
|
|
|
|
function! s:on_colorscheme_changed()
|
2013-08-18 18:13:34 +00:00
|
|
|
|
call <sid>init()
|
2013-08-18 04:44:13 +00: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-22 03:25:22 +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
|
|
|
|
|
if exists("s:stl")
|
|
|
|
|
let &stl = s:stl
|
|
|
|
|
endif
|
|
|
|
|
else
|
|
|
|
|
let s:stl = &stl
|
|
|
|
|
augroup airline
|
2013-08-15 19:02:54 +00:00
|
|
|
|
autocmd!
|
2013-08-15 19:54:14 +00:00
|
|
|
|
|
|
|
|
|
autocmd CmdwinEnter *
|
2013-08-23 21:22:20 +00:00
|
|
|
|
\ call airline#add_statusline_func('airline#cmdwinenter')
|
2013-08-15 19:54:14 +00:00
|
|
|
|
\ | call <sid>on_window_changed()
|
2013-08-23 21:22:20 +00:00
|
|
|
|
autocmd CmdwinLeave * call airline#remove_statusline_func('airline#cmdwinenter')
|
2013-08-15 19:54:14 +00:00
|
|
|
|
|
2013-08-18 04:44:13 +00:00
|
|
|
|
autocmd ColorScheme * call <sid>on_colorscheme_changed()
|
2013-08-27 01:12:00 +00:00
|
|
|
|
autocmd WinEnter,BufWinEnter,FileType,BufUnload,ShellCmdPost,VimResized *
|
2013-08-15 19:02:54 +00:00
|
|
|
|
\ call <sid>on_window_changed()
|
2013-08-26 01:34:26 +00:00
|
|
|
|
|
|
|
|
|
autocmd BufWritePost */autoload/airline/themes/*.vim
|
2013-08-26 15:32:18 +00:00
|
|
|
|
\ exec 'source '.split(globpath(&rtp, 'autoload/airline/themes/'.g:airline_theme.'.vim', 1), "\n")[0]
|
2013-08-26 01:34:26 +00:00
|
|
|
|
\ | call airline#load_theme()
|
2013-08-14 21:56:55 +00:00
|
|
|
|
augroup END
|
2013-08-15 19:02:54 +00:00
|
|
|
|
if s:airline_initialized
|
|
|
|
|
call <sid>on_window_changed()
|
|
|
|
|
endif
|
2013-08-14 21:56:55 +00:00
|
|
|
|
endif
|
|
|
|
|
endfunction
|
|
|
|
|
|
2013-07-10 19:55:55 +00:00
|
|
|
|
function! s:get_airline_themes(a, l, p)
|
2013-07-10 22:17:39 +00:00
|
|
|
|
let files = split(globpath(&rtp, 'autoload/airline/themes/'.a:a.'*'), "\n")
|
2013-07-10 19:55:55 +00:00
|
|
|
|
return map(files, 'fnamemodify(v:val, ":t:r")')
|
|
|
|
|
endfunction
|
2013-07-11 01:40:38 +00:00
|
|
|
|
function! s:airline_theme(...)
|
|
|
|
|
if a:0
|
2013-08-17 17:35:06 +00:00
|
|
|
|
call airline#switch_theme(a:1)
|
2013-07-11 03:03:27 +00:00
|
|
|
|
else
|
|
|
|
|
echo g:airline_theme
|
2013-07-11 01:40:38 +00:00
|
|
|
|
endif
|
|
|
|
|
endfunction
|
|
|
|
|
command! -nargs=? -complete=customlist,<sid>get_airline_themes AirlineTheme call <sid>airline_theme(<f-args>)
|
2013-08-08 14:42:27 +00:00
|
|
|
|
command! AirlineToggleWhitespace call airline#extensions#whitespace#toggle()
|
2013-08-14 21:56:55 +00:00
|
|
|
|
command! AirlineToggle call <sid>airline_toggle()
|
2013-07-10 19:55:55 +00:00
|
|
|
|
|
2013-08-14 21:56:55 +00:00
|
|
|
|
call <sid>airline_toggle()
|
2013-08-17 17:35:06 +00:00
|
|
|
|
|