David Blume's GitList
Repositories
dotfiles.git
Code
Commits
Branches
Tags
Search
Tree:
83d6ad7
Branches
Tags
main
pathogen
remove-vim-airline
vim-airline-disabled
vim-powerline
dotfiles.git
.vim
bundle
vim-airline
autoload
airline
extensions
windowswap.vim
Change from vim-powerline to vim-airline with powerlineish theme.
David Blume
commited
83d6ad7
at 2018-04-26 21:10:19
windowswap.vim
Blame
History
Raw
" MIT License. Copyright (c) 2013-2018 Bailey Ling et al. " vim: et ts=2 sts=2 sw=2 scriptencoding utf-8 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() " 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 return g:airline#extensions#windowswap#indicator_text.s:spc endif return '' endfunction