2016-01-15 02:38:38 +00:00
|
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-30 21:56:12 +00:00
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
|
|
function! s:check_defined(variable, default)
|
|
|
|
|
if !exists(a:variable)
|
|
|
|
|
let {a:variable} = a:default
|
|
|
|
|
endif
|
|
|
|
|
endfunction
|
|
|
|
|
|
2013-08-31 23:30:37 +00:00
|
|
|
|
let s:loaded = 0
|
2013-08-31 21:42:09 +00:00
|
|
|
|
function! airline#init#bootstrap()
|
2013-09-22 22:05:58 +00:00
|
|
|
|
if s:loaded
|
|
|
|
|
return
|
|
|
|
|
endif
|
|
|
|
|
let s:loaded = 1
|
2013-08-31 23:30:37 +00:00
|
|
|
|
|
2013-09-26 02:13:57 +00:00
|
|
|
|
let g:airline#init#bootstrapping = 1
|
2013-09-27 02:15:49 +00:00
|
|
|
|
call s:check_defined('g:airline_left_sep', get(g:, 'airline_powerline_fonts', 0)?"\ue0b0":">")
|
|
|
|
|
call s:check_defined('g:airline_left_alt_sep', get(g:, 'airline_powerline_fonts', 0)?"\ue0b1":">")
|
|
|
|
|
call s:check_defined('g:airline_right_sep', get(g:, 'airline_powerline_fonts', 0)?"\ue0b2":"<")
|
|
|
|
|
call s:check_defined('g:airline_right_alt_sep', get(g:, 'airline_powerline_fonts', 0)?"\ue0b3":"<")
|
2013-08-30 21:56:12 +00:00
|
|
|
|
call s:check_defined('g:airline_detect_modified', 1)
|
|
|
|
|
call s:check_defined('g:airline_detect_paste', 1)
|
2015-06-02 18:37:08 +00:00
|
|
|
|
call s:check_defined('g:airline_detect_crypt', 1)
|
2013-08-30 21:56:12 +00:00
|
|
|
|
call s:check_defined('g:airline_detect_iminsert', 0)
|
|
|
|
|
call s:check_defined('g:airline_inactive_collapse', 1)
|
|
|
|
|
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)
|
2016-02-05 21:19:48 +00:00
|
|
|
|
call s:check_defined('g:airline_gui_mode', airline#init#gui_mode())
|
2013-08-30 21:56:12 +00:00
|
|
|
|
|
|
|
|
|
call s:check_defined('g:airline_mode_map', {})
|
|
|
|
|
call extend(g:airline_mode_map, {
|
|
|
|
|
\ '__' : '------',
|
|
|
|
|
\ 'n' : 'NORMAL',
|
|
|
|
|
\ 'i' : 'INSERT',
|
|
|
|
|
\ 'R' : 'REPLACE',
|
|
|
|
|
\ 'v' : 'VISUAL',
|
|
|
|
|
\ 'V' : 'V-LINE',
|
|
|
|
|
\ 'c' : 'COMMAND',
|
|
|
|
|
\ '' : 'V-BLOCK',
|
|
|
|
|
\ 's' : 'SELECT',
|
|
|
|
|
\ 'S' : 'S-LINE',
|
|
|
|
|
\ '' : 'S-BLOCK',
|
2015-05-25 16:10:27 +00:00
|
|
|
|
\ 't' : 'TERMINAL',
|
2013-08-30 21:56:12 +00:00
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
|
|
|
|
call s:check_defined('g:airline_theme_map', {})
|
|
|
|
|
call extend(g:airline_theme_map, {
|
2016-02-25 07:07:51 +00:00
|
|
|
|
\ '\CTomorrow': 'tomorrow',
|
|
|
|
|
\ 'base16': 'base16',
|
2013-08-30 21:56:12 +00:00
|
|
|
|
\ 'mo[l|n]okai': 'molokai',
|
2016-02-25 07:07:51 +00:00
|
|
|
|
\ 'wombat': 'wombat',
|
|
|
|
|
\ 'zenburn': 'zenburn',
|
|
|
|
|
\ 'solarized': 'solarized',
|
2013-08-30 21:56:12 +00:00
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
2013-08-31 03:35:23 +00:00
|
|
|
|
call s:check_defined('g:airline_symbols', {})
|
|
|
|
|
call extend(g:airline_symbols, {
|
2016-01-28 14:54:14 +00:00
|
|
|
|
\ 'paste': 'PASTE',
|
|
|
|
|
\ 'readonly': get(g:, 'airline_powerline_fonts', 0) ? "\ue0a2" : 'RO',
|
2013-09-27 02:15:49 +00:00
|
|
|
|
\ 'whitespace': get(g:, 'airline_powerline_fonts', 0) ? "\u2739" : '!',
|
2016-01-28 14:54:14 +00:00
|
|
|
|
\ 'linenr': get(g:, 'airline_powerline_fonts', 0) ? "\ue0a1" : ':',
|
|
|
|
|
\ 'branch': get(g:, 'airline_powerline_fonts', 0) ? "\ue0a0" : '',
|
2016-02-05 17:19:53 +00:00
|
|
|
|
\ 'notexists': "\u2204",
|
2013-09-04 15:47:05 +00:00
|
|
|
|
\ 'modified': '+',
|
2013-09-30 14:37:02 +00:00
|
|
|
|
\ 'space': ' ',
|
2015-06-10 02:08:49 +00:00
|
|
|
|
\ 'crypt': get(g:, 'airline_crypt_symbol', nr2char(0x1F512)),
|
2013-08-31 03:35:23 +00:00
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
2013-09-23 14:52:39 +00:00
|
|
|
|
call airline#parts#define('mode', {
|
|
|
|
|
\ 'function': 'airline#parts#mode',
|
|
|
|
|
\ 'accent': 'bold',
|
|
|
|
|
\ })
|
2013-09-01 02:48:27 +00:00
|
|
|
|
call airline#parts#define_function('iminsert', 'airline#parts#iminsert')
|
|
|
|
|
call airline#parts#define_function('paste', 'airline#parts#paste')
|
2015-06-02 18:37:08 +00:00
|
|
|
|
call airline#parts#define_function('crypt', 'airline#parts#crypt')
|
2013-09-01 16:07:46 +00:00
|
|
|
|
call airline#parts#define_function('filetype', 'airline#parts#filetype')
|
2013-09-01 02:48:27 +00:00
|
|
|
|
call airline#parts#define('readonly', {
|
|
|
|
|
\ 'function': 'airline#parts#readonly',
|
2013-09-15 15:59:22 +00:00
|
|
|
|
\ 'accent': 'red',
|
2013-09-01 02:48:27 +00:00
|
|
|
|
\ })
|
|
|
|
|
call airline#parts#define_raw('file', '%f%m')
|
2015-05-27 02:11:01 +00:00
|
|
|
|
call airline#parts#define_raw('path', '%F%m')
|
2016-01-23 11:48:30 +00:00
|
|
|
|
call airline#parts#define('linenr', {
|
|
|
|
|
\ 'raw': '%{g:airline_symbols.linenr}%#__accent_bold#%4l%#__restore__#',
|
|
|
|
|
\ 'accent': 'bold'})
|
2013-09-07 18:14:41 +00:00
|
|
|
|
call airline#parts#define_function('ffenc', 'airline#parts#ffenc')
|
2016-01-28 18:01:05 +00:00
|
|
|
|
call airline#parts#define_empty(['hunks', 'branch', 'tagbar', 'syntastic',
|
|
|
|
|
\ 'eclim', 'whitespace','windowswap', 'ycm_error_count', 'ycm_warning_count'])
|
2014-07-28 21:56:08 +00:00
|
|
|
|
call airline#parts#define_text('capslock', '')
|
2013-08-30 21:56:12 +00:00
|
|
|
|
|
2013-09-26 02:13:57 +00:00
|
|
|
|
unlet g:airline#init#bootstrapping
|
|
|
|
|
endfunction
|
|
|
|
|
|
2016-02-05 21:19:48 +00:00
|
|
|
|
function! airline#init#gui_mode()
|
|
|
|
|
return ((has('nvim') && exists('$NVIM_TUI_ENABLE_TRUE_COLOR'))
|
|
|
|
|
\ || has('gui_running') || (has("termtruecolor") && &guicolors == 1)) ?
|
|
|
|
|
\ 'gui' : 'cterm'
|
|
|
|
|
endfunction
|
|
|
|
|
|
2013-09-26 02:13:57 +00:00
|
|
|
|
function! airline#init#sections()
|
2013-09-19 02:23:50 +00:00
|
|
|
|
let spc = g:airline_symbols.space
|
2013-08-30 21:56:12 +00:00
|
|
|
|
if !exists('g:airline_section_a')
|
2015-06-02 18:37:08 +00:00
|
|
|
|
let g:airline_section_a = airline#section#create_left(['mode', 'crypt', 'paste', 'capslock', 'iminsert'])
|
2013-08-30 21:56:12 +00:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_b')
|
|
|
|
|
let g:airline_section_b = airline#section#create(['hunks', 'branch'])
|
|
|
|
|
endif
|
2013-08-30 21:59:46 +00:00
|
|
|
|
if !exists('g:airline_section_c')
|
2016-01-04 21:42:33 +00:00
|
|
|
|
if exists("+autochdir") && &autochdir == 1
|
2015-05-27 02:11:01 +00:00
|
|
|
|
let g:airline_section_c = airline#section#create(['%<', 'path', spc, 'readonly'])
|
|
|
|
|
else
|
|
|
|
|
let g:airline_section_c = airline#section#create(['%<', 'file', spc, 'readonly'])
|
|
|
|
|
endif
|
2013-08-30 21:59:46 +00:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_gutter')
|
2013-09-18 02:45:12 +00:00
|
|
|
|
let g:airline_section_gutter = airline#section#create(['%='])
|
2013-08-30 21:59:46 +00:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_x')
|
2013-09-01 16:07:46 +00:00
|
|
|
|
let g:airline_section_x = airline#section#create_right(['tagbar', 'filetype'])
|
2013-08-30 21:59:46 +00:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_y')
|
2013-08-30 22:10:04 +00:00
|
|
|
|
let g:airline_section_y = airline#section#create_right(['ffenc'])
|
2013-08-30 21:59:46 +00:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_z')
|
2015-01-18 16:04:26 +00:00
|
|
|
|
let g:airline_section_z = airline#section#create(['windowswap', '%3p%%'.spc, 'linenr', ':%3v '])
|
2013-08-30 21:59:46 +00:00
|
|
|
|
endif
|
2015-12-26 05:10:55 +00:00
|
|
|
|
if !exists('g:airline_section_error')
|
2016-01-30 05:32:29 +00:00
|
|
|
|
let g:airline_section_error = airline#section#create(['ycm_error_count', 'syntastic', 'eclim'])
|
2015-12-26 05:10:55 +00:00
|
|
|
|
endif
|
2013-08-30 21:59:46 +00:00
|
|
|
|
if !exists('g:airline_section_warning')
|
2016-01-30 05:32:29 +00:00
|
|
|
|
let g:airline_section_warning = airline#section#create(['ycm_warning_count', 'whitespace'])
|
2013-08-30 21:59:46 +00:00
|
|
|
|
endif
|
2013-08-30 21:56:12 +00:00
|
|
|
|
endfunction
|
|
|
|
|
|