Add a specific color for commandline mode

closes #1768

Colors for the other themes need to be defined however
This commit is contained in:
Christian Brabandt
2018-07-26 10:20:29 +02:00
parent 59f3669a42
commit c7fb175d35
2 changed files with 8 additions and 0 deletions
+2
View File
@@ -156,6 +156,8 @@ function! airline#check_mode(winnr)
let l:mode = ['visual']
elseif l:m ==# "t"
let l:mode = ['terminal']
elseif l:m ==# "c"
let l:mode = ['commandline']
else
let l:mode = ['normal']
endif