aboutsummaryrefslogtreecommitdiff
path: root/core/ui.vim
diff options
context:
space:
mode:
Diffstat (limited to 'core/ui.vim')
-rw-r--r--core/ui.vim4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/ui.vim b/core/ui.vim
index aa31bf0..919d3e3 100644
--- a/core/ui.vim
+++ b/core/ui.vim
@@ -61,9 +61,7 @@ let s:colorscheme_func = printf('s:my_theme_dict.%s()', s:theme)
if has_key(s:my_theme_dict, s:theme)
execute 'call ' . s:colorscheme_func
else
- echohl WarningMsg
- echomsg 'Invalid colorscheme function: ' s:colorscheme_func
- echohl None
+ call utils#Log('Invalid colorscheme function: ' . s:colorscheme_func, 'error')
endif
"}}
"}