mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-24 15:49:29 +08:00
022c769494
CapsLockStatusline() used to return '[caps]' when soft-capslock was on... and now returns '[Caps]'. As we're just using this to test for the lock, we lower-case the return value in order to "normalize" the value across versions. The change in behaviour can be seen at: tpope/vim-capslock@3a0f051373
15 lines
402 B
VimL
15 lines
402 B
VimL
" MIT License. Copyright (c) 2014 Mathias Andersson.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
if !exists('*CapsLockStatusline')
|
|
finish
|
|
endif
|
|
|
|
function! airline#extensions#capslock#status()
|
|
return tolower(CapsLockStatusline()) == '[caps]' ? 'CAPS' : ''
|
|
endfunction
|
|
|
|
function! airline#extensions#capslock#init(ext)
|
|
call airline#parts#define_function('capslock', 'airline#extensions#capslock#status')
|
|
endfunction
|
|
|