diff options
| author | William Boman <william@redwill.se> | 2021-09-27 22:55:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-27 22:55:13 +0200 |
| commit | 83f2f4123827ae194be39d9de328f5b8d14536d0 (patch) | |
| tree | 5984ad5cf77ec98c9c30d98ffd52b4b7a785c6a2 /lua | |
| parent | Improve the CI for the fmt (#103) (diff) | |
| download | mason-83f2f4123827ae194be39d9de328f5b8d14536d0.tar mason-83f2f4123827ae194be39d9de328f5b8d14536d0.tar.gz mason-83f2f4123827ae194be39d9de328f5b8d14536d0.tar.bz2 mason-83f2f4123827ae194be39d9de328f5b8d14536d0.tar.lz mason-83f2f4123827ae194be39d9de328f5b8d14536d0.tar.xz mason-83f2f4123827ae194be39d9de328f5b8d14536d0.tar.zst mason-83f2f4123827ae194be39d9de328f5b8d14536d0.zip | |
fix stylua (#104)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-lsp-installer/ui/status-win/init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/ui/status-win/init.lua b/lua/nvim-lsp-installer/ui/status-win/init.lua index 15e2696f..10fd5559 100644 --- a/lua/nvim-lsp-installer/ui/status-win/init.lua +++ b/lua/nvim-lsp-installer/ui/status-win/init.lua @@ -94,7 +94,10 @@ local function PendingServers(servers) { LIST_ICON, has_failed and "LspInstallerError" or "LspInstallerOrange" }, { " " .. server.name, server.installer.is_running and "Normal" or "LspInstallerGray" }, { " " .. note, "Comment" }, - { has_failed and "" or (" " .. get_last_non_empty_line(server.installer.tailed_output)), "Comment" }, + { + has_failed and "" or (" " .. get_last_non_empty_line(server.installer.tailed_output)), + "Comment", + }, }, }, Ui.When(has_failed, function() |
