diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/lsp_settings.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/lsp_settings.vim b/plugin/lsp_settings.vim index 6e33743..72a8729 100644 --- a/plugin/lsp_settings.vim +++ b/plugin/lsp_settings.vim @@ -133,7 +133,7 @@ function! s:vimlsp_settings_suggest() abort if exists(':LspInstallServer') !=# 2 redraw echohl Directory - echomsg 'If enable Language Server, please do :LspInstallServer' + echomsg 'Please do :LspInstallServer to enable Language Server' echohl None command! -buffer LspInstallServer call s:vimlsp_install_server() endif @@ -186,7 +186,7 @@ function! s:vimlsp_suggest_plugin() abort endif redraw echohl Directory - echomsg printf('If enable Language Server, please install vim-plugin "%s"', l:server['vim-plugin']['name']) + echomsg printf('Please install vim-plugin "%s" to enable Language Server', l:server['vim-plugin']['name']) echohl None return endfor |