ctrlspace: cleanup s:var usage
This commit is contained in:
parent
a66f7ae13e
commit
5b9cbc1a57
|
@ -1,17 +1,18 @@
|
||||||
" MIT License. Copyright (c) 2013-2019 Bailey Ling et al.
|
" MIT License. Copyright (c) 2013-2019 Bailey Ling et al.
|
||||||
|
" Plugin: https://github.com/szw/vim-ctrlspace
|
||||||
" vim: et ts=2 sts=2 sw=2
|
" vim: et ts=2 sts=2 sw=2
|
||||||
|
|
||||||
scriptencoding utf-8
|
scriptencoding utf-8
|
||||||
|
|
||||||
let s:spc = g:airline_symbols.space
|
|
||||||
let s:padding = s:spc . s:spc . s:spc
|
|
||||||
let s:cs = ctrlspace#context#Configuration().Symbols.CS
|
|
||||||
|
|
||||||
function! airline#extensions#ctrlspace#statusline(...)
|
function! airline#extensions#ctrlspace#statusline(...)
|
||||||
|
let spc = g:airline_symbols.space
|
||||||
|
let padding = spc . spc . spc
|
||||||
|
let cs = ctrlspace#context#Configuration().Symbols.CS
|
||||||
|
|
||||||
let b = airline#builder#new({ 'active': 1 })
|
let b = airline#builder#new({ 'active': 1 })
|
||||||
call b.add_section('airline_b', s:cs . s:padding . ctrlspace#api#StatuslineModeSegment(s:padding))
|
call b.add_section('airline_b', cs . padding . ctrlspace#api#StatuslineModeSegment(s:padding))
|
||||||
call b.split()
|
call b.split()
|
||||||
call b.add_section('airline_x', s:spc . ctrlspace#api#StatuslineTabSegment() . s:spc)
|
call b.add_section('airline_x', spc . ctrlspace#api#StatuslineTabSegment() . spc)
|
||||||
return b.build()
|
return b.build()
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue