diff options
| author | jdhao <jdhao@hotmail.com> | 2021-08-05 01:56:13 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-08-05 01:57:35 +0800 |
| commit | c4d050e99da5a10ebe83e9229dcbd2b21758f54d (patch) | |
| tree | a9b6c65ef3d1ba494976febbe4e08d90a0c51176 /core/ui.vim | |
| parent | 4d3c038cb500de307eb95e6b7c1ec21f075323c7 (diff) | |
Use nvim-notify for showing messages
Diffstat (limited to 'core/ui.vim')
| -rw-r--r-- | core/ui.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ui.vim b/core/ui.vim index c29682f..f93c10e 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -64,7 +64,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 - call utils#Log('Invalid colorscheme function: ' . s:colorscheme_func, 'error') + call v:lua.vim.notify('Invalid colorscheme function: ' . s:colorscheme_func, 'error', {'title': 'nvim-config'}) endif "}} "} |
