Support &iminsert.

This commit is contained in:
Kirill Klenov
2013-07-24 15:35:31 +04:00
parent dd6e952c60
commit c16cafb2bb
3 changed files with 11 additions and 0 deletions

View File

@@ -163,6 +163,13 @@ function! airline#update_highlight()
let l:mode = ['normal']
endif
let g:airline_current_mode_text = get(g:airline_mode_map, l:m, l:m)
if g:airline_detect_iminsert && &iminsert
if exists('b:keymap_name')
let g:airline_current_mode_text .= ' ' . toupper(b:keymap_name)
else
let g:airline_current_mode_text .= ' LANG'
endif
endif
else
let l:mode = ['inactive']
endif