aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-06-12 00:42:57 +0200
committerGitHub <noreply@github.com>2021-06-12 00:42:57 +0200
commitbdce08a17e331ea9d481a12d9bf4461c77730363 (patch)
tree41c2330eaf1349cd59b3d8773cd33477e6feb56d /lua/nvim-lsp-installer.lua
parentServer: add get_default_options() method (diff)
downloadmason-bdce08a17e331ea9d481a12d9bf4461c77730363.tar
mason-bdce08a17e331ea9d481a12d9bf4461c77730363.tar.gz
mason-bdce08a17e331ea9d481a12d9bf4461c77730363.tar.bz2
mason-bdce08a17e331ea9d481a12d9bf4461c77730363.tar.lz
mason-bdce08a17e331ea9d481a12d9bf4461c77730363.tar.xz
mason-bdce08a17e331ea9d481a12d9bf4461c77730363.tar.zst
mason-bdce08a17e331ea9d481a12d9bf4461c77730363.zip
add get_server({server_name}) to public Lua API (#24)
Diffstat (limited to 'lua/nvim-lsp-installer.lua')
-rw-r--r--lua/nvim-lsp-installer.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/nvim-lsp-installer.lua b/lua/nvim-lsp-installer.lua
index ecf70ad0..cea53b8d 100644
--- a/lua/nvim-lsp-installer.lua
+++ b/lua/nvim-lsp-installer.lua
@@ -5,6 +5,7 @@ local M = {}
M.get_available_servers = server.get_available_servers
M.get_installed_servers = server.get_installed_servers
M.get_uninstalled_servers = server.get_uninstalled_servers
+M.get_server = server.get_server
M.install = server.install
M.uninstall = server.uninstall