aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/nvim-lsp-installer.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/nvim-lsp-installer.vim b/plugin/nvim-lsp-installer.vim
index 3050d865..6e23e64b 100644
--- a/plugin/nvim-lsp-installer.vim
+++ b/plugin/nvim-lsp-installer.vim
@@ -5,11 +5,11 @@ let s:save_cpo = &cpo
set cpo&vim
function! s:LspInstallCompletion(...) abort
- return join(luaeval("require'nvim-lsp-installer.servers'.get_available_server_names()"), "\n")
+ return join(sort(luaeval("require'nvim-lsp-installer.servers'.get_available_server_names()")), "\n")
endfunction
function! s:LspUninstallCompletion(...) abort
- return join(luaeval("require'nvim-lsp-installer.servers'.get_installed_server_names()"), "\n")
+ return join(sort(luaeval("require'nvim-lsp-installer.servers'.get_installed_server_names()")), "\n")
endfunction
function! s:LspInstall(server_names) abort