2021-01-01 20:57:00 +08:00
|
|
|
|
" MIT License. Copyright (c) 2013-2021 Bailey Ling et al.
|
2013-08-18 01:35:06 +08:00
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-03 01:56:12 +08:00
|
|
|
|
|
2016-09-24 08:16:30 +08:00
|
|
|
|
scriptencoding utf-8
|
|
|
|
|
|
2013-08-24 05:22:20 +08:00
|
|
|
|
let g:airline_statusline_funcrefs = get(g:, 'airline_statusline_funcrefs', [])
|
2021-05-23 12:41:34 +08:00
|
|
|
|
let g:airline_inactive_funcrefs = get(g:, 'airline_inactive_statusline_funcrefs', [])
|
2013-08-24 05:22:20 +08:00
|
|
|
|
|
2015-12-26 13:10:55 +08:00
|
|
|
|
let s:sections = ['a','b','c','gutter','x','y','z', 'error', 'warning']
|
2018-11-08 23:20:37 +08:00
|
|
|
|
let s:contexts = {}
|
|
|
|
|
let s:core_funcrefs = [
|
|
|
|
|
\ function('airline#extensions#apply'),
|
|
|
|
|
\ function('airline#extensions#default#apply') ]
|
|
|
|
|
|
2013-07-07 20:58:39 +08:00
|
|
|
|
|
2021-05-23 12:41:34 +08:00
|
|
|
|
function! airline#add_statusline_func(name, ...)
|
|
|
|
|
let warn = get(a:, 1, 1)
|
|
|
|
|
call airline#add_statusline_funcref(function(a:name), warn)
|
2013-08-24 05:22:20 +08:00
|
|
|
|
endfunction
|
|
|
|
|
|
2021-05-23 12:41:34 +08:00
|
|
|
|
function! airline#add_inactive_statusline_func(name, ...)
|
|
|
|
|
let warn = get(a:, 1, 1)
|
|
|
|
|
call airline#add_inactive_statusline_funcref(function(a:name), warn)
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function! airline#add_statusline_funcref(function, ...)
|
2013-10-04 22:27:49 +08:00
|
|
|
|
if index(g:airline_statusline_funcrefs, a:function) >= 0
|
2021-05-23 12:41:34 +08:00
|
|
|
|
let warn = get(a:, 1, 1)
|
|
|
|
|
if warn > 0
|
|
|
|
|
call airline#util#warning(printf('The airline statusline funcref "%s" has already been added.', string(a:function)))
|
|
|
|
|
endif
|
2013-10-04 22:27:49 +08:00
|
|
|
|
return
|
|
|
|
|
endif
|
2013-08-24 05:22:20 +08:00
|
|
|
|
call add(g:airline_statusline_funcrefs, a:function)
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
function! airline#remove_statusline_func(name)
|
|
|
|
|
let i = index(g:airline_statusline_funcrefs, function(a:name))
|
|
|
|
|
if i > -1
|
|
|
|
|
call remove(g:airline_statusline_funcrefs, i)
|
|
|
|
|
endif
|
|
|
|
|
endfunction
|
|
|
|
|
|
2021-05-23 12:41:34 +08:00
|
|
|
|
function! airline#add_inactive_statusline_funcref(function, ...)
|
|
|
|
|
if index(g:airline_inactive_funcrefs, a:function) >= 0
|
|
|
|
|
let warn = get(a:, 1, 1)
|
|
|
|
|
if warn > 0
|
|
|
|
|
call airline#util#warning(printf('The airline inactive statusline funcref "%s" has already been added.', string(a:function)))
|
|
|
|
|
endif
|
|
|
|
|
return
|
|
|
|
|
endif
|
2021-05-26 19:26:47 +08:00
|
|
|
|
call add(g:airline_inactive_funcrefs, a:function)
|
2013-08-24 21:31:30 +08:00
|
|
|
|
endfunction
|
|
|
|
|
|
2013-08-18 01:35:06 +08:00
|
|
|
|
function! airline#load_theme()
|
2018-01-05 06:54:12 +08:00
|
|
|
|
let g:airline_theme = get(g:, 'airline_theme', 'dark')
|
2013-09-28 09:36:44 +08:00
|
|
|
|
if exists('*airline#themes#{g:airline_theme}#refresh')
|
|
|
|
|
call airline#themes#{g:airline_theme}#refresh()
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
let palette = g:airline#themes#{g:airline_theme}#palette
|
|
|
|
|
call airline#themes#patch(palette)
|
|
|
|
|
|
|
|
|
|
if exists('g:airline_theme_patch_func')
|
|
|
|
|
let Fn = function(g:airline_theme_patch_func)
|
|
|
|
|
call Fn(palette)
|
|
|
|
|
endif
|
|
|
|
|
|
2013-08-24 21:40:20 +08:00
|
|
|
|
call airline#highlighter#load_theme()
|
2013-08-10 23:50:21 +08:00
|
|
|
|
call airline#extensions#load_theme()
|
2015-02-27 22:09:26 +08:00
|
|
|
|
call airline#update_statusline()
|
2021-03-21 19:19:08 +08:00
|
|
|
|
|
|
|
|
|
call airline#util#doautocmd('AirlineAfterTheme')
|
2013-08-06 20:31:45 +08:00
|
|
|
|
endfunction
|
|
|
|
|
|
2018-11-08 23:20:37 +08:00
|
|
|
|
" Load an airline theme
|
2018-11-14 14:36:45 +08:00
|
|
|
|
function! airline#switch_theme(name, ...)
|
|
|
|
|
let silent = get(a:000, '0', 0)
|
2018-11-14 04:19:01 +08:00
|
|
|
|
" get all available themes
|
|
|
|
|
let themes = airline#util#themes('')
|
|
|
|
|
let err = 0
|
2013-09-25 12:25:20 +08:00
|
|
|
|
try
|
2018-11-14 04:19:01 +08:00
|
|
|
|
if index(themes, a:name) == -1
|
|
|
|
|
" Theme not available
|
2018-11-14 14:36:45 +08:00
|
|
|
|
if !silent
|
|
|
|
|
call airline#util#warning(printf('The specified theme "%s" cannot be found.', a:name))
|
|
|
|
|
endif
|
|
|
|
|
throw "not-found"
|
2018-11-14 04:19:01 +08:00
|
|
|
|
let err = 1
|
|
|
|
|
else
|
|
|
|
|
exe "ru autoload/airline/themes/". a:name. ".vim"
|
2018-11-14 05:39:36 +08:00
|
|
|
|
let g:airline_theme = a:name
|
2018-11-14 04:19:01 +08:00
|
|
|
|
endif
|
2018-11-14 14:36:45 +08:00
|
|
|
|
catch /^Vim/
|
|
|
|
|
" catch only Vim errors, not "not-found"
|
2018-11-14 04:19:01 +08:00
|
|
|
|
call airline#util#warning(printf('There is an error in theme "%s".', a:name))
|
|
|
|
|
if &vbs
|
|
|
|
|
call airline#util#warning(v:exception)
|
|
|
|
|
endif
|
|
|
|
|
let err = 1
|
|
|
|
|
endtry
|
|
|
|
|
|
|
|
|
|
if err
|
2013-09-25 12:25:20 +08:00
|
|
|
|
if exists('g:airline_theme')
|
|
|
|
|
return
|
|
|
|
|
else
|
|
|
|
|
let g:airline_theme = 'dark'
|
|
|
|
|
endif
|
2018-11-14 04:19:01 +08:00
|
|
|
|
endif
|
2013-08-23 07:55:04 +08:00
|
|
|
|
|
2018-11-14 04:19:01 +08:00
|
|
|
|
unlet! w:airline_lastmode
|
2013-08-18 01:35:06 +08:00
|
|
|
|
call airline#load_theme()
|
2013-09-24 05:18:52 +08:00
|
|
|
|
|
|
|
|
|
" this is required to prevent clobbering the startup info message, i don't know why...
|
|
|
|
|
call airline#check_mode(winnr())
|
2013-07-09 06:52:11 +08:00
|
|
|
|
endfunction
|
|
|
|
|
|
2018-11-08 23:20:37 +08:00
|
|
|
|
" Try to load the right theme for the current colorscheme
|
2013-08-18 12:44:13 +08:00
|
|
|
|
function! airline#switch_matching_theme()
|
2013-08-18 12:56:38 +08:00
|
|
|
|
if exists('g:colors_name')
|
2016-02-28 03:22:30 +08:00
|
|
|
|
let existing = g:airline_theme
|
2018-11-14 05:29:32 +08:00
|
|
|
|
let theme = tr(tolower(g:colors_name), '-', '_')
|
2013-09-02 06:25:43 +08:00
|
|
|
|
try
|
2018-11-14 14:36:45 +08:00
|
|
|
|
call airline#switch_theme(theme, 1)
|
2013-08-18 12:56:38 +08:00
|
|
|
|
return 1
|
2013-09-02 06:25:43 +08:00
|
|
|
|
catch
|
2013-08-18 12:56:38 +08:00
|
|
|
|
for map in items(g:airline_theme_map)
|
|
|
|
|
if match(g:colors_name, map[0]) > -1
|
2016-01-31 04:17:19 +08:00
|
|
|
|
try
|
2018-11-14 14:36:45 +08:00
|
|
|
|
call airline#switch_theme(map[1], 1)
|
2016-01-31 04:17:19 +08:00
|
|
|
|
catch
|
|
|
|
|
call airline#switch_theme(existing)
|
|
|
|
|
endtry
|
2013-08-18 12:56:38 +08:00
|
|
|
|
return 1
|
|
|
|
|
endif
|
|
|
|
|
endfor
|
2013-09-02 06:25:43 +08:00
|
|
|
|
endtry
|
2013-08-18 12:44:13 +08:00
|
|
|
|
endif
|
|
|
|
|
return 0
|
|
|
|
|
endfunction
|
|
|
|
|
|
2018-11-08 23:20:37 +08:00
|
|
|
|
" Update the statusline
|
2013-08-06 04:03:45 +08:00
|
|
|
|
function! airline#update_statusline()
|
2021-12-04 03:54:26 +08:00
|
|
|
|
if airline#util#stl_disabled(winnr()) || airline#util#is_popup_window(winnr())
|
2015-07-11 03:12:14 +08:00
|
|
|
|
return
|
|
|
|
|
endif
|
2021-12-04 03:54:26 +08:00
|
|
|
|
" TODO: need to ignore popup windows here as well?
|
2018-10-03 18:29:23 +08:00
|
|
|
|
let range = filter(range(1, winnr('$')), 'v:val != winnr()')
|
|
|
|
|
" create inactive statusline
|
|
|
|
|
call airline#update_statusline_inactive(range)
|
2013-08-07 08:47:31 +08:00
|
|
|
|
|
2016-12-14 03:28:30 +08:00
|
|
|
|
unlet! w:airline_render_left w:airline_render_right
|
|
|
|
|
exe 'unlet! ' 'w:airline_section_'. join(s:sections, ' w:airline_section_')
|
2013-08-03 22:58:25 +08:00
|
|
|
|
|
2018-11-08 23:20:37 +08:00
|
|
|
|
" Now create the active statusline
|
2013-08-24 21:31:30 +08:00
|
|
|
|
let w:airline_active = 1
|
2013-09-06 04:45:12 +08:00
|
|
|
|
let context = { 'winnr': winnr(), 'active': 1, 'bufnr': winbufnr(winnr()) }
|
2013-08-24 21:31:30 +08:00
|
|
|
|
call s:invoke_funcrefs(context, g:airline_statusline_funcrefs)
|
|
|
|
|
endfunction
|
|
|
|
|
|
2018-11-08 23:20:37 +08:00
|
|
|
|
" Function to be called to make all statuslines inactive
|
|
|
|
|
" Triggered on FocusLost autocommand
|
2018-10-16 16:49:17 +08:00
|
|
|
|
function! airline#update_statusline_focuslost()
|
|
|
|
|
if get(g:, 'airline_focuslost_inactive', 0)
|
|
|
|
|
let bufnr=bufnr('%')
|
|
|
|
|
call airline#highlighter#highlight_modified_inactive(bufnr)
|
|
|
|
|
call airline#highlighter#highlight(['inactive'], bufnr)
|
|
|
|
|
call airline#update_statusline_inactive(range(1, winnr('$')))
|
|
|
|
|
endif
|
|
|
|
|
endfunction
|
2018-11-08 23:20:37 +08:00
|
|
|
|
|
|
|
|
|
" Function to draw inactive statuslines for inactive windows
|
2018-10-03 18:29:23 +08:00
|
|
|
|
function! airline#update_statusline_inactive(range)
|
2019-12-22 19:06:35 +08:00
|
|
|
|
if airline#util#stl_disabled(winnr())
|
2018-10-03 18:29:23 +08:00
|
|
|
|
return
|
|
|
|
|
endif
|
|
|
|
|
for nr in a:range
|
2019-12-22 19:06:35 +08:00
|
|
|
|
if airline#util#stl_disabled(nr)
|
2018-10-03 18:29:23 +08:00
|
|
|
|
continue
|
|
|
|
|
endif
|
|
|
|
|
call setwinvar(nr, 'airline_active', 0)
|
|
|
|
|
let context = { 'winnr': nr, 'active': 0, 'bufnr': winbufnr(nr) }
|
2018-11-09 00:09:17 +08:00
|
|
|
|
if get(g:, 'airline_inactive_alt_sep', 0)
|
|
|
|
|
call extend(context, {
|
|
|
|
|
\ 'left_sep': g:airline_left_alt_sep,
|
|
|
|
|
\ 'right_sep': g:airline_right_alt_sep }, 'keep')
|
|
|
|
|
endif
|
2021-05-23 12:41:34 +08:00
|
|
|
|
call s:invoke_funcrefs(context, g:airline_inactive_funcrefs)
|
2018-10-03 18:29:23 +08:00
|
|
|
|
endfor
|
|
|
|
|
endfunction
|
|
|
|
|
|
2018-11-08 23:20:37 +08:00
|
|
|
|
" Gather output from all funcrefs which will later be returned by the
|
|
|
|
|
" airline#statusline() function
|
2013-08-24 21:31:30 +08:00
|
|
|
|
function! s:invoke_funcrefs(context, funcrefs)
|
2013-08-24 21:40:20 +08:00
|
|
|
|
let builder = airline#builder#new(a:context)
|
2013-08-31 23:55:00 +08:00
|
|
|
|
let err = airline#util#exec_funcrefs(a:funcrefs + s:core_funcrefs, builder, a:context)
|
2013-08-27 08:56:54 +08:00
|
|
|
|
if err == 1
|
2013-09-03 02:55:15 +08:00
|
|
|
|
let a:context.line = builder.build()
|
|
|
|
|
let s:contexts[a:context.winnr] = a:context
|
2019-02-04 00:30:55 +08:00
|
|
|
|
let option = get(g:, 'airline_statusline_ontop', 0) ? '&tabline' : '&statusline'
|
|
|
|
|
call setwinvar(a:context.winnr, option, '%!airline#statusline('.a:context.winnr.')')
|
2013-08-22 11:25:22 +08:00
|
|
|
|
endif
|
2013-07-07 20:58:39 +08:00
|
|
|
|
endfunction
|
|
|
|
|
|
2018-11-08 23:20:37 +08:00
|
|
|
|
" Main statusline function per window
|
|
|
|
|
" will be set to the statusline option
|
2013-09-03 02:55:15 +08:00
|
|
|
|
function! airline#statusline(winnr)
|
2013-10-06 21:03:47 +08:00
|
|
|
|
if has_key(s:contexts, a:winnr)
|
|
|
|
|
return '%{airline#check_mode('.a:winnr.')}'.s:contexts[a:winnr].line
|
|
|
|
|
endif
|
|
|
|
|
" in rare circumstances this happens...see #276
|
|
|
|
|
return ''
|
2013-09-04 23:25:55 +08:00
|
|
|
|
endfunction
|
|
|
|
|
|
2019-02-04 15:21:39 +08:00
|
|
|
|
" Check if mode has changed
|
2013-09-06 04:45:12 +08:00
|
|
|
|
function! airline#check_mode(winnr)
|
2018-10-16 16:25:50 +08:00
|
|
|
|
if !has_key(s:contexts, a:winnr)
|
|
|
|
|
return ''
|
|
|
|
|
endif
|
2013-09-06 04:45:12 +08:00
|
|
|
|
let context = s:contexts[a:winnr]
|
|
|
|
|
|
2013-07-18 10:28:21 +08:00
|
|
|
|
if get(w:, 'airline_active', 1)
|
2021-05-08 04:43:00 +08:00
|
|
|
|
let m = mode(1)
|
2022-02-07 05:06:11 +08:00
|
|
|
|
" Refer :help mode() to see the list of modes
|
|
|
|
|
" NB: 'let mode' here refers to the display colour _groups_,
|
|
|
|
|
" not the literal mode's code (i.e., m). E.g., Select modes
|
|
|
|
|
" v, S and ^V use 'visual' since they are of similar ilk.
|
|
|
|
|
" Some modes do not get recognised for status line purposes:
|
|
|
|
|
" no, nov, noV, no^V, !, cv, and ce.
|
|
|
|
|
" Mode name displayed is handled in init.vim (g:airline_mode_map).
|
|
|
|
|
"
|
|
|
|
|
if m[0] ==# "i"
|
|
|
|
|
let mode = ['insert'] " Insert modes + submodes (i, ic, ix)
|
|
|
|
|
elseif m[0] == "R"
|
|
|
|
|
let mode = ['replace'] " Replace modes + submodes (R, Rc, Rv, Rx) (NB: case sensitive as 'r' is a mode)
|
|
|
|
|
elseif m[0] =~ '\v(v|V||s|S|)'
|
|
|
|
|
let mode = ['visual'] " Visual and Select modes (v, V, ^V, s, S, ^S))
|
|
|
|
|
elseif m ==# "t"
|
|
|
|
|
let mode = ['terminal'] " Terminal mode (only has one mode (t))
|
|
|
|
|
elseif m[0] =~ '\v(c|r|!)'
|
|
|
|
|
let mode = ['commandline'] " c, cv, ce, r, rm, r? (NB: cv and ce stay showing as mode entered from)
|
2013-07-16 10:06:50 +08:00
|
|
|
|
else
|
2022-02-07 05:06:11 +08:00
|
|
|
|
let mode = ['normal'] " Normal mode + submodes (n, niI, niR, niV; plus operator pendings no, nov, noV, no^V)
|
2013-07-16 10:06:50 +08:00
|
|
|
|
endif
|
2019-06-11 15:45:53 +08:00
|
|
|
|
if exists("*VMInfos") && !empty(VMInfos())
|
|
|
|
|
" Vim plugin Multiple Cursors https://github.com/mg979/vim-visual-multi
|
2021-05-08 04:43:00 +08:00
|
|
|
|
let m = 'multi'
|
2019-06-11 15:45:53 +08:00
|
|
|
|
endif
|
2022-02-07 05:06:11 +08:00
|
|
|
|
" Adjust to handle additional modes, which don't display correctly otherwise
|
|
|
|
|
if index(['niI', 'niR', 'niV', 'ic', 'ix', 'Rc', 'Rv', 'Rx', 'multi'], m) == -1
|
2021-05-08 04:43:00 +08:00
|
|
|
|
let m = m[0]
|
2018-09-19 02:00:46 +08:00
|
|
|
|
endif
|
2021-05-08 04:43:00 +08:00
|
|
|
|
let w:airline_current_mode = get(g:airline_mode_map, m, m)
|
2013-07-07 20:58:39 +08:00
|
|
|
|
else
|
2021-05-08 04:43:00 +08:00
|
|
|
|
let mode = ['inactive']
|
2013-08-11 21:42:47 +08:00
|
|
|
|
let w:airline_current_mode = get(g:airline_mode_map, '__')
|
2013-07-07 20:58:39 +08:00
|
|
|
|
endif
|
|
|
|
|
|
2014-05-10 22:41:21 +08:00
|
|
|
|
if g:airline_detect_modified && &modified
|
2021-05-08 04:43:00 +08:00
|
|
|
|
call add(mode, 'modified')
|
2013-08-17 20:50:07 +08:00
|
|
|
|
endif
|
2013-09-06 04:45:12 +08:00
|
|
|
|
|
2013-08-17 20:50:07 +08:00
|
|
|
|
if g:airline_detect_paste && &paste
|
2021-05-08 04:43:00 +08:00
|
|
|
|
call add(mode, 'paste')
|
2013-08-17 20:50:07 +08:00
|
|
|
|
endif
|
2013-07-07 20:58:39 +08:00
|
|
|
|
|
2015-06-10 00:19:16 +08:00
|
|
|
|
if g:airline_detect_crypt && exists("+key") && !empty(&key)
|
2021-05-08 04:43:00 +08:00
|
|
|
|
call add(mode, 'crypt')
|
2015-06-03 02:37:08 +08:00
|
|
|
|
endif
|
|
|
|
|
|
2016-03-22 14:52:04 +08:00
|
|
|
|
if g:airline_detect_spell && &spell
|
2021-05-08 04:43:00 +08:00
|
|
|
|
call add(mode, 'spell')
|
2016-03-22 14:52:04 +08:00
|
|
|
|
endif
|
|
|
|
|
|
2014-08-28 06:16:26 +08:00
|
|
|
|
if &readonly || ! &modifiable
|
2021-05-08 04:43:00 +08:00
|
|
|
|
call add(mode, 'readonly')
|
2014-05-10 22:41:21 +08:00
|
|
|
|
endif
|
|
|
|
|
|
2021-05-08 04:43:00 +08:00
|
|
|
|
let mode_string = join(mode)
|
2016-02-08 04:10:37 +08:00
|
|
|
|
if get(w:, 'airline_lastmode', '') != mode_string
|
2021-05-08 19:36:55 +08:00
|
|
|
|
call airline#highlighter#highlight_modified_inactive(context.bufnr)
|
2021-05-08 04:43:00 +08:00
|
|
|
|
call airline#highlighter#highlight(mode, string(context.bufnr))
|
2018-09-25 22:03:30 +08:00
|
|
|
|
call airline#util#doautocmd('AirlineModeChanged')
|
2013-07-16 10:06:50 +08:00
|
|
|
|
let w:airline_lastmode = mode_string
|
2013-07-07 20:58:39 +08:00
|
|
|
|
endif
|
2013-09-03 02:55:15 +08:00
|
|
|
|
|
2013-09-04 23:25:55 +08:00
|
|
|
|
return ''
|
2013-07-07 20:58:39 +08:00
|
|
|
|
endfunction
|
2019-02-04 15:23:58 +08:00
|
|
|
|
|
|
|
|
|
function! airline#update_tabline()
|
|
|
|
|
if get(g:, 'airline_statusline_ontop', 0)
|
|
|
|
|
call airline#extensions#tabline#redraw()
|
|
|
|
|
endif
|
|
|
|
|
endfunction
|
2019-02-04 15:25:45 +08:00
|
|
|
|
|
|
|
|
|
function! airline#mode_changed()
|
|
|
|
|
" airline#visual_active
|
|
|
|
|
" Boolean: for when to get visual wordcount
|
|
|
|
|
" needed for the wordcount extension
|
|
|
|
|
let g:airline#visual_active = (mode() =~? '[vs]')
|
|
|
|
|
call airline#update_tabline()
|
|
|
|
|
endfunction
|