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