2020-06-11 04:18:30 +08:00
|
|
|
" MIT License. Copyright (c) 2014-2020 Mathias Andersson et al.
|
2019-11-09 03:18:04 +08:00
|
|
|
" Plugin: https://github.com/tpope/vim-capslock
|
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()
|
2020-03-17 17:27:30 +08:00
|
|
|
return tolower(CapsLockStatusline()) ==# '[caps]' ? get(g:, 'airline#extensions#capslock#symbol', '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
|