Added support for Neovim's terminal buffer mode

This commit is contained in:
James Clarke 2015-05-25 17:10:27 +01:00
parent 491b3335cd
commit 0b5ef59cf5
2 changed files with 3 additions and 0 deletions

View File

@ -142,6 +142,8 @@ function! airline#check_mode(winnr)
let l:mode = ['replace']
elseif l:m =~# '\v(v|V||s|S|)'
let l:mode = ['visual']
elseif l:m ==# "t"
let l:mode = ['terminal']
else
let l:mode = ['normal']
endif

View File

@ -41,6 +41,7 @@ function! airline#init#bootstrap()
\ 's' : 'SELECT',
\ 'S' : 'S-LINE',
\ '' : 'S-BLOCK',
\ 't' : 'TERMINAL',
\ }, 'keep')
call s:check_defined('g:airline_theme_map', {})