2016-01-15 10:38:38 +08:00
|
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-31 05:56:12 +08:00
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
2016-09-24 08:16:30 +08:00
|
|
|
|
scriptencoding utf-8
|
|
|
|
|
|
2013-08-31 05:56:12 +08:00
|
|
|
|
function! s:check_defined(variable, default)
|
|
|
|
|
if !exists(a:variable)
|
|
|
|
|
let {a:variable} = a:default
|
|
|
|
|
endif
|
|
|
|
|
endfunction
|
|
|
|
|
|
2013-09-01 07:30:37 +08:00
|
|
|
|
let s:loaded = 0
|
2013-09-01 05:42:09 +08:00
|
|
|
|
function! airline#init#bootstrap()
|
2013-09-23 06:05:58 +08:00
|
|
|
|
if s:loaded
|
|
|
|
|
return
|
|
|
|
|
endif
|
|
|
|
|
let s:loaded = 1
|
2013-09-01 07:30:37 +08:00
|
|
|
|
|
2013-09-26 10:13:57 +08:00
|
|
|
|
let g:airline#init#bootstrapping = 1
|
2017-02-08 01:15:54 +08: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-31 05:56:12 +08:00
|
|
|
|
call s:check_defined('g:airline_detect_modified', 1)
|
|
|
|
|
call s:check_defined('g:airline_detect_paste', 1)
|
2015-06-03 02:37:08 +08:00
|
|
|
|
call s:check_defined('g:airline_detect_crypt', 1)
|
2016-03-22 14:52:04 +08:00
|
|
|
|
call s:check_defined('g:airline_detect_spell', 1)
|
2013-08-31 05:56:12 +08: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-06 05:19:48 +08:00
|
|
|
|
call s:check_defined('g:airline_gui_mode', airline#init#gui_mode())
|
2013-08-31 05:56:12 +08:00
|
|
|
|
|
2016-09-29 03:59:16 +08:00
|
|
|
|
let g:airline#util#async = v:version >= 800 && has('job')
|
|
|
|
|
let g:airline#util#is_windows = has('win32') || has('win64')
|
|
|
|
|
|
2013-08-31 05:56:12 +08: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-26 00:10:27 +08:00
|
|
|
|
\ 't' : 'TERMINAL',
|
2013-08-31 05:56:12 +08:00
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
|
|
|
|
call s:check_defined('g:airline_theme_map', {})
|
|
|
|
|
call extend(g:airline_theme_map, {
|
2016-02-25 15:07:51 +08:00
|
|
|
|
\ '\CTomorrow': 'tomorrow',
|
|
|
|
|
\ 'base16': 'base16',
|
2013-08-31 05:56:12 +08:00
|
|
|
|
\ 'mo[l|n]okai': 'molokai',
|
2016-02-25 15:07:51 +08:00
|
|
|
|
\ 'wombat': 'wombat',
|
|
|
|
|
\ 'zenburn': 'zenburn',
|
|
|
|
|
\ 'solarized': 'solarized',
|
2016-10-10 06:37:46 +08:00
|
|
|
|
\ 'flattened': 'solarized',
|
|
|
|
|
\ '\CNeoSolarized': 'solarized',
|
2013-08-31 05:56:12 +08:00
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
2013-08-31 11:35:23 +08:00
|
|
|
|
call s:check_defined('g:airline_symbols', {})
|
|
|
|
|
call extend(g:airline_symbols, {
|
2016-01-28 22:54:14 +08:00
|
|
|
|
\ 'paste': 'PASTE',
|
2016-03-22 14:52:04 +08:00
|
|
|
|
\ 'spell': 'SPELL',
|
2016-01-28 22:54:14 +08:00
|
|
|
|
\ 'readonly': get(g:, 'airline_powerline_fonts', 0) ? "\ue0a2" : 'RO',
|
2017-02-08 01:15:54 +08:00
|
|
|
|
\ 'whitespace': get(g:, 'airline_powerline_fonts', 0) ? "\u2632" : "\u2632",
|
|
|
|
|
\ 'linenr': get(g:, 'airline_powerline_fonts', 0) ? "\ue0a1" : "\u33D1",
|
|
|
|
|
\ 'maxlinenr': get(g:, 'airline_powerline_fonts', 0) ? "\u2630" : "\u2630",
|
|
|
|
|
\ 'branch': get(g:, 'airline_powerline_fonts', 0) ? "\ue0a0" : "\u16A0",
|
2016-02-06 01:19:53 +08:00
|
|
|
|
\ 'notexists': "\u2204",
|
2013-09-04 23:47:05 +08:00
|
|
|
|
\ 'modified': '+',
|
2013-09-30 22:37:02 +08:00
|
|
|
|
\ 'space': ' ',
|
2015-06-10 10:08:49 +08:00
|
|
|
|
\ 'crypt': get(g:, 'airline_crypt_symbol', nr2char(0x1F512)),
|
2013-08-31 11:35:23 +08:00
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
2013-09-23 22:52:39 +08:00
|
|
|
|
call airline#parts#define('mode', {
|
|
|
|
|
\ 'function': 'airline#parts#mode',
|
|
|
|
|
\ 'accent': 'bold',
|
|
|
|
|
\ })
|
2013-09-01 10:48:27 +08:00
|
|
|
|
call airline#parts#define_function('iminsert', 'airline#parts#iminsert')
|
|
|
|
|
call airline#parts#define_function('paste', 'airline#parts#paste')
|
2015-06-03 02:37:08 +08:00
|
|
|
|
call airline#parts#define_function('crypt', 'airline#parts#crypt')
|
2016-03-22 14:52:04 +08:00
|
|
|
|
call airline#parts#define_function('spell', 'airline#parts#spell')
|
2013-09-02 00:07:46 +08:00
|
|
|
|
call airline#parts#define_function('filetype', 'airline#parts#filetype')
|
2013-09-01 10:48:27 +08:00
|
|
|
|
call airline#parts#define('readonly', {
|
|
|
|
|
\ 'function': 'airline#parts#readonly',
|
2013-09-15 23:59:22 +08:00
|
|
|
|
\ 'accent': 'red',
|
2013-09-01 10:48:27 +08:00
|
|
|
|
\ })
|
|
|
|
|
call airline#parts#define_raw('file', '%f%m')
|
2015-05-27 10:11:01 +08:00
|
|
|
|
call airline#parts#define_raw('path', '%F%m')
|
2016-01-23 19:48:30 +08:00
|
|
|
|
call airline#parts#define('linenr', {
|
2017-01-27 19:10:07 +08:00
|
|
|
|
\ 'raw': '%{g:airline_symbols.linenr}%4l',
|
|
|
|
|
\ 'accent': 'bold'})
|
2016-03-23 14:17:17 +08:00
|
|
|
|
call airline#parts#define('maxlinenr', {
|
2017-01-27 18:25:37 +08:00
|
|
|
|
\ 'raw': '/%L%{g:airline_symbols.maxlinenr}',
|
2017-01-27 19:10:07 +08:00
|
|
|
|
\ 'accent': 'bold'})
|
2013-09-08 02:14:41 +08:00
|
|
|
|
call airline#parts#define_function('ffenc', 'airline#parts#ffenc')
|
2016-05-30 03:44:39 +08:00
|
|
|
|
call airline#parts#define_empty(['hunks', 'branch', 'obsession', 'tagbar', 'syntastic',
|
2016-09-27 11:57:51 +08:00
|
|
|
|
\ 'eclim', 'whitespace','windowswap', 'ycm_error_count', 'ycm_warning_count',
|
2016-10-10 09:27:51 +08:00
|
|
|
|
\ 'neomake_error_count', 'neomake_warning_count', 'ale_error_count', 'ale_warning_count'])
|
2014-07-29 05:56:08 +08:00
|
|
|
|
call airline#parts#define_text('capslock', '')
|
2017-01-18 11:34:14 +08:00
|
|
|
|
call airline#parts#define_text('xkblayout', '')
|
2013-08-31 05:56:12 +08:00
|
|
|
|
|
2013-09-26 10:13:57 +08:00
|
|
|
|
unlet g:airline#init#bootstrapping
|
|
|
|
|
endfunction
|
|
|
|
|
|
2016-02-06 05:19:48 +08:00
|
|
|
|
function! airline#init#gui_mode()
|
2016-05-12 22:59:06 +08:00
|
|
|
|
return ((has('nvim') && exists('$NVIM_TUI_ENABLE_TRUE_COLOR') && !exists("+termguicolors"))
|
2016-05-12 22:32:04 +08:00
|
|
|
|
\ || has('gui_running') || (has("termtruecolor") && &guicolors == 1) || (has("termguicolors") && &termguicolors == 1)) ?
|
2016-02-06 05:19:48 +08:00
|
|
|
|
\ 'gui' : 'cterm'
|
|
|
|
|
endfunction
|
|
|
|
|
|
2013-09-26 10:13:57 +08:00
|
|
|
|
function! airline#init#sections()
|
2013-09-19 10:23:50 +08:00
|
|
|
|
let spc = g:airline_symbols.space
|
2013-08-31 05:56:12 +08:00
|
|
|
|
if !exists('g:airline_section_a')
|
2017-01-18 11:34:14 +08:00
|
|
|
|
let g:airline_section_a = airline#section#create_left(['mode', 'crypt', 'paste', 'spell', 'capslock', 'xkblayout', 'iminsert'])
|
2013-08-31 05:56:12 +08:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_b')
|
|
|
|
|
let g:airline_section_b = airline#section#create(['hunks', 'branch'])
|
|
|
|
|
endif
|
2013-08-31 05:59:46 +08:00
|
|
|
|
if !exists('g:airline_section_c')
|
2016-01-05 05:42:33 +08:00
|
|
|
|
if exists("+autochdir") && &autochdir == 1
|
2015-05-27 10:11:01 +08: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-31 05:59:46 +08:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_gutter')
|
2013-09-18 10:45:12 +08:00
|
|
|
|
let g:airline_section_gutter = airline#section#create(['%='])
|
2013-08-31 05:59:46 +08:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_x')
|
2013-09-02 00:07:46 +08:00
|
|
|
|
let g:airline_section_x = airline#section#create_right(['tagbar', 'filetype'])
|
2013-08-31 05:59:46 +08:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_y')
|
2013-08-31 06:10:04 +08:00
|
|
|
|
let g:airline_section_y = airline#section#create_right(['ffenc'])
|
2013-08-31 05:59:46 +08:00
|
|
|
|
endif
|
|
|
|
|
if !exists('g:airline_section_z')
|
2016-07-02 15:56:05 +08:00
|
|
|
|
if winwidth(0) > 80
|
|
|
|
|
let g:airline_section_z = airline#section#create(['windowswap', 'obsession', '%3p%%'.spc, 'linenr', 'maxlinenr', spc.':%3v'])
|
|
|
|
|
else
|
|
|
|
|
let g:airline_section_z = airline#section#create(['%3p%%'.spc, 'linenr', ':%3v'])
|
|
|
|
|
endif
|
2013-08-31 05:59:46 +08:00
|
|
|
|
endif
|
2015-12-26 13:10:55 +08:00
|
|
|
|
if !exists('g:airline_section_error')
|
2016-10-10 09:27:51 +08:00
|
|
|
|
let g:airline_section_error = airline#section#create(['ycm_error_count', 'syntastic', 'eclim', 'neomake_error_count', 'ale_error_count'])
|
2015-12-26 13:10:55 +08:00
|
|
|
|
endif
|
2013-08-31 05:59:46 +08:00
|
|
|
|
if !exists('g:airline_section_warning')
|
2016-10-10 09:27:51 +08:00
|
|
|
|
let g:airline_section_warning = airline#section#create(['ycm_warning_count', 'neomake_warning_count', 'ale_warning_count', 'whitespace'])
|
2013-08-31 05:59:46 +08:00
|
|
|
|
endif
|
2013-08-31 05:56:12 +08:00
|
|
|
|
endfunction
|