2014-08-03 18:02:51 -04:00
|
|
|
" 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()
|
2015-12-08 08:20:04 -05:00
|
|
|
return tolower(CapsLockStatusline()) == '[caps]' ? 'CAPS' : ''
|
2014-08-03 18:02:51 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#capslock#init(ext)
|
|
|
|
call airline#parts#define_function('capslock', 'airline#extensions#capslock#status')
|
|
|
|
endfunction
|
|
|
|
|