diff options
| author | William Boman <william@redwill.se> | 2021-09-30 21:41:49 +0200 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2021-09-30 21:41:49 +0200 |
| commit | a7d7520bc84269fd29ae265f6142897ccd58d5c6 (patch) | |
| tree | 6003c28d3e3fa8b7afa07acfc12a52c799a320c6 /doc | |
| parent | feat(ui): add a popup option (#100) (diff) | |
| download | mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.gz mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.bz2 mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.lz mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.xz mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.zst mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.zip | |
fix logging at correct level, also add :LspInstallLog command
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/nvim-lsp-installer.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/nvim-lsp-installer.txt b/doc/nvim-lsp-installer.txt index 44b57b83..fceb1c76 100644 --- a/doc/nvim-lsp-installer.txt +++ b/doc/nvim-lsp-installer.txt @@ -97,6 +97,11 @@ Uninstalls language servers. Uninstalls all installed language servers. + *:LspInstallLog* +:LspInstallLog + +Opens the log file in a new tab window. + *:LspPrintInstalled* :LspPrintInstalled @@ -126,9 +131,8 @@ Example: > *nvim-lsp-installer-default-settings* -The following settings are applied by default. +The following settings are applied by default. > -> local DEFAULT_SETTINGS = { ui = { icons = { @@ -141,18 +145,14 @@ The following settings are applied by default. }, }, - -- Controls to which degree logs are written to the log file. For example, it's useful to set this to - -- vim.log.levels.TRACE when debugging issues with server installations. + -- Controls to which degree logs are written to the log file. It's useful to set this to vim.log.levels.DEBUG when + -- debugging issues with server installations. log_level = vim.log.levels.WARN, - -- Whether to allow LSP servers to share the same installation directory. - -- For some servers, this effectively causes more than one server to be - -- installed (and uninstalled) when executing `:LspInstall` and - -- `:LspUninstall`. - - -- For example, installing `cssls` will also install both `jsonls` and `html` - -- (and the other ways around), as these all share the same underlying - -- package. + -- Whether to allow LSP servers to share the same installation directory. For some servers, this effectively causes + -- more than one server to be installed (and uninstalled) when executing `:LspInstall` and `:LspUninstall`. For + -- example, installing `cssls` will also install both `jsonls` and `html` (and the other ways around), as these all + -- share the same underlying package. allow_federated_servers = true, } < |
