mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-30 04:33:38 +08:00
254d1a2d8d
Add help Add linebreak and default
18 lines
531 B
VimL
18 lines
531 B
VimL
" MIT License. Copyright (c) 2014-2019 Mathias Andersson et al.
|
|
" Plugin: https://github.com/tpope/vim-capslock
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
scriptencoding utf-8
|
|
|
|
if !exists('*CapsLockStatusline')
|
|
finish
|
|
endif
|
|
|
|
function! airline#extensions#capslock#status()
|
|
return tolower(CapsLockStatusline()) ==# '[caps]' ? get(g:, 'airline#extensions#capslock#symbol', 'CAPS') : ''
|
|
endfunction
|
|
|
|
function! airline#extensions#capslock#init(ext)
|
|
call airline#parts#define_function('capslock', 'airline#extensions#capslock#status')
|
|
endfunction
|