diff options
| author | William Boman <william@redwill.se> | 2021-12-07 20:15:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-07 20:15:03 +0100 |
| commit | 0fe8c254d90794f13860cbeac5e5987a081a8031 (patch) | |
| tree | b3a7c9239278baaaefa4274955f910adbb2ced94 /lua/nvim-lsp-installer/ui | |
| parent | fix(installers/npm): dont apply global-style for standalone npm install (diff) | |
| download | mason-0fe8c254d90794f13860cbeac5e5987a081a8031.tar mason-0fe8c254d90794f13860cbeac5e5987a081a8031.tar.gz mason-0fe8c254d90794f13860cbeac5e5987a081a8031.tar.bz2 mason-0fe8c254d90794f13860cbeac5e5987a081a8031.tar.lz mason-0fe8c254d90794f13860cbeac5e5987a081a8031.tar.xz mason-0fe8c254d90794f13860cbeac5e5987a081a8031.tar.zst mason-0fe8c254d90794f13860cbeac5e5987a081a8031.zip | |
initial healthcheck integration (#321)
Diffstat (limited to 'lua/nvim-lsp-installer/ui')
| -rw-r--r-- | lua/nvim-lsp-installer/ui/status-win/init.lua | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lua/nvim-lsp-installer/ui/status-win/init.lua b/lua/nvim-lsp-installer/ui/status-win/init.lua index 06f3f366..f1c6c7b0 100644 --- a/lua/nvim-lsp-installer/ui/status-win/init.lua +++ b/lua/nvim-lsp-installer/ui/status-win/init.lua @@ -79,10 +79,19 @@ local function Help(is_current_settings_expanded, vader_saber_ticks) { { "Problems installing/uninstalling servers", "LspInstallerLabel" } }, { { - "Make sure you meet the minimum requirements to install servers. For debugging, refer to ", + "Make sure you meet the minimum requirements to install servers. For debugging, refer to:", "LspInstallerMuted", }, - { ":help nvim-lsp-installer-debugging", "LspInstallerHighlighted" }, + }, + }, + Indent { + Ui.HlTextNode { + { + { ":help nvim-lsp-installer-debugging", "LspInstallerHighlighted" }, + }, + { + { ":checkhealth nvim-lsp-installer", "LspInstallerHighlighted" }, + }, }, }, Ui.EmptyLine(), |
