mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 15:30:07 +08:00
17 lines
421 B
VimL
17 lines
421 B
VimL
" MIT License. Copyright (c) 2013-2017 Doron Behar, C.Brabandt
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
scriptencoding utf-8
|
|
|
|
if !has('keymap')
|
|
finish
|
|
endif
|
|
|
|
function! airline#extensions#keymap#status()
|
|
return ('%s', (&keymap ? (g:airline_symbols.keymap . ' '. &keymap) : ''))
|
|
endfunction
|
|
|
|
function! airline#extensions#keymap#init(ext)
|
|
call airline#parts#define_function('keymap', 'airline#extensions#keymap#status')
|
|
endfunction
|