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
|
|
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
|
scriptencoding utf-8
|
|
|
|
|
|
2013-08-30 21:56:12 +00:00
|
|
|
|
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
|
2017-02-16 18:51:30 +00:00
|
|
|
|
|
|
|
|
|
let g:airline#util#async = v:version >= 800 && has('job')
|
|
|
|
|
let g:airline#util#is_windows = has('win32') || has('win64')
|
|
|
|
|
|
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)
|
2016-03-22 06:52:04 +00:00
|
|
|
|
call s:check_defined('g:airline_detect_spell', 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',
|
2016-10-09 22:37:46 +00:00
|
|
|
|
\ 'flattened': 'solarized',
|
|
|
|
|
\ '\CNeoSolarized': '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', {})
|
2017-02-16 18:51:30 +00:00
|
|
|
|
" First define the symbols,
|
|
|
|
|
" that are common in Powerline/Unicode/ASCII mode,
|
|
|
|
|
" then add specific symbols for either mode
|
2013-08-31 03:35:23 +00:00
|
|
|
|
call extend(g:airline_symbols, {
|
2017-02-16 18:51:30 +00:00
|
|
|
|
\ 'paste': 'PASTE',
|
|
|
|
|
\ 'spell': 'SPELL',
|
|
|
|
|
\ 'modified': '+',
|
|
|
|
|
\ 'space': ' '
|
|
|
|
|
\ }, 'keep')
|
|
|
|
|
|
2017-02-28 03:32:06 +00:00
|
|
|
|
if get(g:, 'airline_powerline_fonts', 0)
|
2017-02-16 18:51:30 +00:00
|
|
|
|
" Symbols for Powerline terminals
|
|
|
|
|
call s:check_defined('g:airline_left_sep', "\ue0b0") "
|
|
|
|
|
call s:check_defined('g:airline_left_alt_sep', "\ue0b1") "
|
|
|
|
|
call s:check_defined('g:airline_right_sep', "\ue0b2") "
|
|
|
|
|
call s:check_defined('g:airline_right_alt_sep', "\ue0b3") "
|
|
|
|
|
" ro=, ws=☲, lnr=☰, mlnr=, br=, nx=Ɇ, crypt=🔒
|
|
|
|
|
call extend(g:airline_symbols, {
|
|
|
|
|
\ 'readonly': "\ue0a2",
|
|
|
|
|
\ 'whitespace': "\u2632",
|
2017-03-17 13:27:18 +00:00
|
|
|
|
\ 'linenr': "\u2630 ",
|
|
|
|
|
\ 'maxlinenr': " \ue0a1",
|
2017-02-16 18:51:30 +00:00
|
|
|
|
\ 'branch': "\ue0a0",
|
|
|
|
|
\ 'notexists': "\u0246",
|
|
|
|
|
\ 'crypt': nr2char(0x1F512),
|
|
|
|
|
\ }, 'keep')
|
2017-02-25 21:13:16 +00:00
|
|
|
|
elseif &encoding==?'utf-8' && !get(g:, "airline_symbols_ascii", 0)
|
2017-02-16 18:51:30 +00:00
|
|
|
|
" Symbols for Unicode terminals
|
|
|
|
|
call s:check_defined('g:airline_left_sep', "")
|
|
|
|
|
call s:check_defined('g:airline_left_alt_sep', "")
|
|
|
|
|
call s:check_defined('g:airline_right_sep', "")
|
|
|
|
|
call s:check_defined('g:airline_right_alt_sep', "")
|
|
|
|
|
" ro=⊝, ws=☲, lnr=☰, mlnr=㏑, br=ᚠ, nx=Ɇ, crypt=🔒
|
|
|
|
|
call extend(g:airline_symbols, {
|
|
|
|
|
\ 'readonly': "\u229D",
|
|
|
|
|
\ 'whitespace': "\u2632",
|
2017-03-17 13:27:18 +00:00
|
|
|
|
\ 'linenr': "\u2630 ",
|
|
|
|
|
\ 'maxlinenr': " \u33D1",
|
2017-02-16 18:51:30 +00:00
|
|
|
|
\ 'branch': "\u16A0",
|
|
|
|
|
\ 'notexists': "\u0246",
|
|
|
|
|
\ 'crypt': nr2char(0x1F512),
|
|
|
|
|
\ }, 'keep')
|
|
|
|
|
else
|
|
|
|
|
" Symbols for ASCII terminals
|
|
|
|
|
call s:check_defined('g:airline_left_sep', "")
|
|
|
|
|
call s:check_defined('g:airline_left_alt_sep', "")
|
|
|
|
|
call s:check_defined('g:airline_right_sep', "")
|
|
|
|
|
call s:check_defined('g:airline_right_alt_sep', "")
|
|
|
|
|
call extend(g:airline_symbols, {
|
|
|
|
|
\ 'readonly': 'RO',
|
|
|
|
|
\ 'whitespace': '!',
|
2017-03-17 13:27:18 +00:00
|
|
|
|
\ 'linenr': 'ln ',
|
|
|
|
|
\ 'maxlinenr': ' :',
|
2017-02-16 18:51:30 +00:00
|
|
|
|
\ 'branch': '',
|
|
|
|
|
\ 'notexists': '?',
|
|
|
|
|
\ 'crypt': 'cr',
|
|
|
|
|
\ }, 'keep')
|
|
|
|
|
endif
|
2013-08-31 03:35:23 +00:00
|
|
|
|
|
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')
|
2016-03-22 06:52:04 +00:00
|
|
|
|
call airline#parts#define_function('spell', 'airline#parts#spell')
|
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', {
|
2017-01-27 11:10:07 +00:00
|
|
|
|
\ 'raw': '%{g:airline_symbols.linenr}%4l',
|
|
|
|
|
\ 'accent': 'bold'})
|
2016-03-23 06:17:17 +00:00
|
|
|
|
call airline#parts#define('maxlinenr', {
|
2017-01-27 10:25:37 +00:00
|
|
|
|
\ 'raw': '/%L%{g:airline_symbols.maxlinenr}',
|
2017-01-27 11:10:07 +00:00
|
|
|
|
\ 'accent': 'bold'})
|
2013-09-07 18:14:41 +00:00
|
|
|
|
call airline#parts#define_function('ffenc', 'airline#parts#ffenc')
|
2016-05-29 19:44:39 +00:00
|
|
|
|
call airline#parts#define_empty(['hunks', 'branch', 'obsession', 'tagbar', 'syntastic',
|
2016-09-27 03:57:51 +00:00
|
|
|
|
\ 'eclim', 'whitespace','windowswap', 'ycm_error_count', 'ycm_warning_count',
|
2016-10-10 01:27:51 +00:00
|
|
|
|
\ 'neomake_error_count', 'neomake_warning_count', 'ale_error_count', 'ale_warning_count'])
|
2014-07-28 21:56:08 +00:00
|
|
|
|
call airline#parts#define_text('capslock', '')
|
2017-01-18 03:34:14 +00:00
|
|
|
|
call airline#parts#define_text('xkblayout', '')
|
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()
|
2016-05-12 14:59:06 +00:00
|
|
|
|
return ((has('nvim') && exists('$NVIM_TUI_ENABLE_TRUE_COLOR') && !exists("+termguicolors"))
|
2016-05-12 14:32:04 +00:00
|
|
|
|
\ || has('gui_running') || (has("termtruecolor") && &guicolors == 1) || (has("termguicolors") && &termguicolors == 1)) ?
|
2016-02-05 21:19:48 +00:00
|
|
|
|
\ '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')
|
2017-01-18 03:34:14 +00:00
|
|
|
|
let g:airline_section_a = airline#section#create_left(['mode', 'crypt', 'paste', 'spell', 'capslock', 'xkblayout', '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')
|
2016-07-02 07:56:05 +00: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-30 21:59:46 +00:00
|
|
|
|
endif
|
2015-12-26 05:10:55 +00:00
|
|
|
|
if !exists('g:airline_section_error')
|
2016-10-10 01:27:51 +00:00
|
|
|
|
let g:airline_section_error = airline#section#create(['ycm_error_count', 'syntastic', 'eclim', 'neomake_error_count', 'ale_error_count'])
|
2015-12-26 05:10:55 +00:00
|
|
|
|
endif
|
2013-08-30 21:59:46 +00:00
|
|
|
|
if !exists('g:airline_section_warning')
|
2016-10-10 01:27:51 +00:00
|
|
|
|
let g:airline_section_warning = airline#section#create(['ycm_warning_count', 'neomake_warning_count', 'ale_warning_count', 'whitespace'])
|
2013-08-30 21:59:46 +00:00
|
|
|
|
endif
|
2013-08-30 21:56:12 +00:00
|
|
|
|
endfunction
|