2019-03-25 11:27:10 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2019 Bailey Ling et al.
|
2019-11-08 18:58:22 +00:00
|
|
|
" Plugin: https://github.com/szw/vim-ctrlspace
|
2015-02-28 02:44:35 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2015-02-28 02:44:35 +00:00
|
|
|
function! airline#extensions#ctrlspace#statusline(...)
|
2019-11-08 18:58:22 +00:00
|
|
|
let spc = g:airline_symbols.space
|
|
|
|
let padding = spc . spc . spc
|
|
|
|
let cs = ctrlspace#context#Configuration().Symbols.CS
|
|
|
|
|
2015-02-28 02:44:35 +00:00
|
|
|
let b = airline#builder#new({ 'active': 1 })
|
2019-11-08 18:58:22 +00:00
|
|
|
call b.add_section('airline_b', cs . padding . ctrlspace#api#StatuslineModeSegment(s:padding))
|
2015-02-28 02:44:35 +00:00
|
|
|
call b.split()
|
2019-11-08 18:58:22 +00:00
|
|
|
call b.add_section('airline_x', spc . ctrlspace#api#StatuslineTabSegment() . spc)
|
2015-02-28 02:44:35 +00:00
|
|
|
return b.build()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#ctrlspace#init(ext)
|
2016-01-12 12:47:44 +00:00
|
|
|
let g:CtrlSpaceStatuslineFunction = "airline#extensions#ctrlspace#statusline()"
|
2015-02-28 02:44:35 +00:00
|
|
|
endfunction
|