diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-28 21:08:38 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-28 21:08:38 +0900 |
commit | 552052d5fc29951fa5391e0409cfc9f2edb3a6ee (patch) | |
tree | baef8e77d708c5d4909b32568876f3e13c0506e4 /plugin | |
parent | d0e074d5165e2b53c26ec299b1fe529732cc7542 (diff) | |
download | vim-lsp-settings-552052d5fc29951fa5391e0409cfc9f2edb3a6ee.tar.gz vim-lsp-settings-552052d5fc29951fa5391e0409cfc9f2edb3a6ee.tar.bz2 vim-lsp-settings-552052d5fc29951fa5391e0409cfc9f2edb3a6ee.zip |
Show colored message
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/lsp_settings.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/lsp_settings.vim b/plugin/lsp_settings.vim index b54ec20..5284203 100644 --- a/plugin/lsp_settings.vim +++ b/plugin/lsp_settings.vim @@ -109,7 +109,10 @@ function! s:vimlsp_settings_suggest() abort return endif if !exists(':LspInstallServer') + redraw + echohl Directory echomsg 'If you want to enable Language Server, please do :LspInstallServer' + echohl None command! -buffer LspInstallServer call s:vimlsp_install_server() endif endfunction |