2016-01-15 02:38:38 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
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
|
|
|
let s:spc = g:airline_symbols.space
|
|
|
|
let s:padding = s:spc . s:spc . s:spc
|
2017-09-27 08:17:50 +00:00
|
|
|
let s:cs = ctrlspace#context#Configuration().Symbols.CS
|
2015-02-28 02:44:35 +00:00
|
|
|
|
|
|
|
function! airline#extensions#ctrlspace#statusline(...)
|
|
|
|
let b = airline#builder#new({ 'active': 1 })
|
2017-09-27 08:17:50 +00:00
|
|
|
call b.add_section('airline_b', s:cs . s:padding . ctrlspace#api#StatuslineModeSegment(s:padding))
|
2015-02-28 02:44:35 +00:00
|
|
|
call b.split()
|
2016-01-12 12:47:44 +00:00
|
|
|
call b.add_section('airline_x', s:spc . ctrlspace#api#StatuslineTabSegment() . s: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
|