2019-03-25 19:27:10 +08:00
|
|
|
" MIT License. Copyright (c) 2014-2019 Mathias Andersson et al.
|
2014-07-29 05:56:08 +08:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2016-09-24 08:16:30 +08:00
|
|
|
|
|
|
|
scriptencoding utf-8
|
|
|
|
|
2014-07-29 05:56:08 +08:00
|
|
|
if !exists('*CapsLockStatusline')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
function! airline#extensions#capslock#status()
|
2015-08-20 06:13:51 +08:00
|
|
|
return tolower(CapsLockStatusline()) == '[caps]' ? 'CAPS' : ''
|
2014-07-29 05:56:08 +08:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#capslock#init(ext)
|
|
|
|
call airline#parts#define_function('capslock', 'airline#extensions#capslock#status')
|
|
|
|
endfunction
|