aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/ui/status-win/init.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-11-08 15:50:23 +0100
committerGitHub <noreply@github.com>2021-11-08 15:50:23 +0100
commitc9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d (patch)
tree4c601e6e0a16b8b53cba4a8e23f39a935e1c4aee /lua/nvim-lsp-installer/ui/status-win/init.lua
parentremove deprecated eslintls (diff)
downloadmason-c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d.tar
mason-c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d.tar.gz
mason-c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d.tar.bz2
mason-c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d.tar.lz
mason-c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d.tar.xz
mason-c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d.tar.zst
mason-c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d.zip
remove {pre,post}_setup functions (#250)
Diffstat (limited to 'lua/nvim-lsp-installer/ui/status-win/init.lua')
-rw-r--r--lua/nvim-lsp-installer/ui/status-win/init.lua10
1 files changed, 7 insertions, 3 deletions
diff --git a/lua/nvim-lsp-installer/ui/status-win/init.lua b/lua/nvim-lsp-installer/ui/status-win/init.lua
index 67319afa..06f3f366 100644
--- a/lua/nvim-lsp-installer/ui/status-win/init.lua
+++ b/lua/nvim-lsp-installer/ui/status-win/init.lua
@@ -88,7 +88,12 @@ local function Help(is_current_settings_expanded, vader_saber_ticks)
Ui.EmptyLine(),
Ui.HlTextNode {
{ { "Problems with server functionality", "LspInstallerLabel" } },
- { { "Please refer to each language server's own homepage for further assistance.", "LspInstallerMuted" } },
+ {
+ {
+ "Please refer to each language server's own homepage for further assistance.",
+ "LspInstallerMuted",
+ },
+ },
},
Ui.EmptyLine(),
Ui.HlTextNode {
@@ -120,8 +125,7 @@ local function Header(props)
{
{ props.is_showing_help and props.help_command_text or "", "LspInstallerHighlighted" },
{
- props.is_showing_help
- and "nvim-lsp-installer" .. (" "):rep(#props.help_command_text)
+ props.is_showing_help and "nvim-lsp-installer" .. (" "):rep(#props.help_command_text)
or "nvim-lsp-installer",
props.is_showing_help and "LspInstallerHighlighted" or "LspInstallerHeader",
},