vim-airline/plugin/airline.vim

153 lines
5.2 KiB
VimL
Raw Normal View History

" MIT License. Copyright (c) 2013 Bailey Ling.
" 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-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-07-02 11:14:55 +00:00
call s:check_defined('g:airline_left_sep', exists('g:airline_powerline_fonts')?"":">")
call s:check_defined('g:airline_left_alt_sep', exists('g:airline_powerline_fonts')?"":">")
2013-07-02 11:14:55 +00:00
call s:check_defined('g:airline_right_sep', exists('g:airline_powerline_fonts')?"":"<")
call s:check_defined('g:airline_right_alt_sep', exists('g:airline_powerline_fonts')?"":"<")
2013-07-03 21:20:49 +00:00
call s:check_defined('g:airline_enable_bufferline', 1)
call s:check_defined('g:airline_enable_branch', 1)
2013-07-02 11:14:55 +00:00
call s:check_defined('g:airline_enable_syntastic', 1)
2013-07-31 20:07:14 +00:00
call s:check_defined('g:airline_enable_tagbar', 1)
2013-08-13 21:27:21 +00:00
call s:check_defined('g:airline_enable_csv', 1)
2013-07-25 01:48:23 +00:00
call s:check_defined('g:airline_detect_iminsert', 0)
call s:check_defined('g:airline_detect_modified', 1)
call s:check_defined('g:airline_detect_paste', 1)
call s:check_defined('g:airline_detect_whitespace', 1)
call s:check_defined('g:airline_branch_empty_message', '')
call s:check_defined('g:airline_branch_prefix', exists('g:airline_powerline_fonts')?' ':'')
2013-07-02 11:14:55 +00: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')?' ':':')
call s:check_defined('g:airline_paste_symbol', (exists('g:airline_powerline_fonts') ? ' ' : '').'PASTE')
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'])
call s:check_defined('g:airline_exclude_filetypes', [])
call s:check_defined('g:airline_exclude_preview', 0)
call s:check_defined('g:airline_statusline_funcrefs', [])
call s:check_defined('g:airline_exclude_funcrefs', [])
2013-06-30 19:29:35 +00:00
call s:check_defined('g:airline_mode_map', {
\ '__' : '------',
\ 'n' : 'NORMAL',
\ 'i' : 'INSERT',
2013-07-26 17:21:43 +00:00
\ 'R' : 'REPLACE',
\ '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',
\ 's' : 'SELECT',
\ 'S' : 'S-LINE',
\ '' : 'S-BLOCK',
\ })
call s:check_defined('g:airline_theme_map', {
\ 'Tomorrow.*': 'tomorrow',
\ 'mo[l|n]okai': 'molokai',
\ 'wombat.*': 'wombat',
\ '.*solarized.*': 'solarized',
\ })
call s:check_defined('g:airline_section_a', '%{get(w:, "airline_current_mode", "")}')
2013-08-18 17:22:35 +00:00
call s:check_defined('g:airline_section_b', '')
2013-08-06 03:16:49 +00:00
call s:check_defined('g:airline_section_c', '%f%m')
call s:check_defined('g:airline_section_gutter', '%=')
2013-08-06 03:16:49 +00: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')
call s:check_defined('g:airline_section_warning', '')
2013-08-06 03:16:49 +00:00
let s:airline_initialized = 0
let s:airline_theme_defined = 0
function! s:init()
if !s:airline_initialized
let s:airline_initialized = 1
2013-07-07 12:41:36 +00:00
call airline#extensions#load()
let s:airline_theme_defined = exists('g:airline_theme')
if !airline#switch_matching_theme()
let g:airline_theme = get(g:, 'airline_theme', 'dark')
call airline#switch_theme(g:airline_theme)
endif
endif
endfunction
function! s:on_window_changed()
call <sid>init()
call airline#update_statusline()
endfunction
function! s:on_colorscheme_changed()
call <sid>init()
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
function airline#cmdwinenter()
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
autocmd!
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)
autocmd ColorScheme * call <sid>on_colorscheme_changed()
autocmd WinEnter,BufWinEnter,FileType,BufUnload,ShellCmdPost *
\ call <sid>on_window_changed()
2013-08-14 21:56:55 +00:00
augroup END
if s:airline_initialized
call <sid>on_window_changed()
endif
2013-08-14 21:56:55 +00: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
2013-07-11 01:40:38 +00:00
function! s:airline_theme(...)
if a:0
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-08-14 21:56:55 +00:00
call <sid>airline_toggle()