aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-04-29 13:14:57 +0200
committerWilliam Boman <william@redwill.se>2022-04-29 13:15:46 +0200
commit48abdc9d32f56e038f4aca478cf6d5a1628b8286 (patch)
tree0fbf2b70c0c0446cf058f8cb9789d4705b2c80c3 /doc
parentfeat: add ensure_installed to setup table (#637) (diff)
downloadmason-48abdc9d32f56e038f4aca478cf6d5a1628b8286.tar
mason-48abdc9d32f56e038f4aca478cf6d5a1628b8286.tar.gz
mason-48abdc9d32f56e038f4aca478cf6d5a1628b8286.tar.bz2
mason-48abdc9d32f56e038f4aca478cf6d5a1628b8286.tar.lz
mason-48abdc9d32f56e038f4aca478cf6d5a1628b8286.tar.xz
mason-48abdc9d32f56e038f4aca478cf6d5a1628b8286.tar.zst
mason-48abdc9d32f56e038f4aca478cf6d5a1628b8286.zip
docs: more deprecations and update some outdated docs
Diffstat (limited to 'doc')
-rw-r--r--doc/nvim-lsp-installer.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/nvim-lsp-installer.txt b/doc/nvim-lsp-installer.txt
index c7c5e28b..75b9e242 100644
--- a/doc/nvim-lsp-installer.txt
+++ b/doc/nvim-lsp-installer.txt
@@ -265,7 +265,7 @@ uninstall({server_name})
{server_name} (string) The server to uninstall.
*nvim-lsp-installer.on_server_ready()*
-on_server_ready({cb})
+on_server_ready({cb}) *DEPRECATED - setup servers directly via lspconfig instead*
Registers a callback to be executed each time a server is ready to be
initiated.
@@ -366,14 +366,14 @@ class: Server
Attaches this server to all current open buffers with a
'filetype' that matches the server's configured filetypes.
- - get_default_options()
+ - get_default_options() *DEPRECATED*
Returns a deep copy of the default options provided to
lspconfig in the setup({opts}) method.
Note: These only include the options provided by
nvim-lsp-installer, and not the default options provided
by lspconfig.
- - on_ready({handler})
+ - on_ready({handler}) *DEPRECATED*
Registers the provided {handler} to be called when the
server is ready to be setup.