2014-09-05 03:02:19 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
if !exists('g:loaded_windowswap')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
let s:spc = g:airline_symbols.space
|
|
|
|
|
|
|
|
if !exists('g:airline#extensions#windowswap#indicator_text')
|
|
|
|
let g:airline#extensions#windowswap#indicator_text = 'WS'
|
|
|
|
endif
|
|
|
|
|
|
|
|
function! airline#extensions#windowswap#init(ext)
|
|
|
|
call airline#parts#define_function('windowswap', 'airline#extensions#windowswap#get_status')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#windowswap#get_status()
|
2016-03-17 00:26:44 +00:00
|
|
|
" use new tab-aware api if WS is up to date
|
|
|
|
let s:mark = exists('*WindowSwap#IsCurrentWindowMarked') ?
|
|
|
|
\WindowSwap#IsCurrentWindowMarked() :
|
|
|
|
\(WindowSwap#HasMarkedWindow() && WindowSwap#GetMarkedWindowNum() == winnr())
|
|
|
|
if s:mark
|
2014-09-05 03:02:19 +00:00
|
|
|
return g:airline#extensions#windowswap#indicator_text.s:spc
|
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|