theme: do not show not-found warning

Only show the "airline theme not found" warning message, when the user
actually used `:AirlineTheme foobar`, not when called by an autocommand
that tries to switch themes when the Vim colorscheme changed.

fixes #1824
This commit is contained in:
Christian Brabandt
2018-11-14 07:36:45 +01:00
parent b2e1dbad6f
commit ffac12cbbe
2 changed files with 14 additions and 6 deletions

View File

@@ -151,7 +151,10 @@ endfunction
function! s:airline_theme(...)
if a:0
call airline#switch_theme(a:1)
try
call airline#switch_theme(a:1)
catch " discard error
endtry
else
echo g:airline_theme
endif