| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 | local M = {  banner = {    "",    [[    __                          _    ___         ]],    [[   / /   __  ______  ____ _____| |  / (_)___ ___ ]],    [[  / /   / / / / __ \/ __ `/ ___/ | / / / __ `__ \]],    [[ / /___/ /_/ / / / / /_/ / /   | |/ / / / / / / /]],    [[/_____/\__,_/_/ /_/\__,_/_/    |___/_/_/ /_/ /_/ ]],  },}local fmt = string.formatlocal text = require "lvim.interface.text"local lsp_utils = require "lvim.lsp.utils"local function str_list(list)  return fmt("[ %s ]", table.concat(list, ", "))endlocal function make_formatters_info(ft)  local null_formatters = require "lvim.lsp.null-ls.formatters"  local registered_formatters = null_formatters.list_registered_providers(ft)  local supported_formatters = null_formatters.list_available(ft)  local section = {    "Formatters info",    fmt(      "* Active: %s%s",      table.concat(registered_formatters, "  , "),      vim.tbl_count(registered_formatters) > 0 and "  " or ""    ),    fmt("* Supported: %s", str_list(supported_formatters)),  }  return sectionendlocal function make_linters_info(ft)  local null_linters = require "lvim.lsp.null-ls.linters"  local supported_linters = null_linters.list_available(ft)  local registered_linters = null_linters.list_registered_providers(ft)  local section = {    "Linters info",    fmt(      "* Active: %s%s",      table.concat(registered_linters, "  , "),      vim.tbl_count(registered_linters) > 0 and "  " or ""    ),    fmt("* Supported: %s", str_list(supported_linters)),  }  return sectionendlocal function tbl_set_highlight(terms, highlight_group)  for _, v in pairs(terms) do    vim.cmd('let m=matchadd("' .. highlight_group .. '", "' .. v .. "[ ,│']\")")  endendlocal function make_client_info(client)  local client_enabled_caps = lsp_utils.get_client_capabilities(client.id)  local name = client.name  local id = client.id  local document_formatting = client.resolved_capabilities.document_formatting  local attached_buffers_list = table.concat(vim.lsp.get_buffers_by_client_id(client.id), ", ")  local client_info = {    fmt("* Name:                      %s", name),    fmt("* Id:                        [%s]", tostring(id)),    fmt("* Attached buffers:          [%s]", tostring(attached_buffers_list)),    fmt("* Supports formatting:       %s", tostring(document_formatting)),  }  if not vim.tbl_isempty(client_enabled_caps) then    local caps_text = "* Capabilities list:         "    local caps_text_len = caps_text:len()    local enabled_caps = text.format_table(client_enabled_caps, 3, " | ")    enabled_caps = text.shift_right(enabled_caps, caps_text_len)    enabled_caps[1] = fmt("%s%s", caps_text, enabled_caps[1]:sub(caps_text_len + 1))    vim.list_extend(client_info, enabled_caps)  end  return client_infoendfunction M.toggle_popup(ft)  local clients = lsp_utils.get_active_clients_by_ft(ft)  local client_names = {}  local bufnr = vim.api.nvim_get_current_buf()  local ts_active_buffers = vim.tbl_keys(vim.treesitter.highlighter.active)  local is_treesitter_active = function()    local status = "inactive"    if vim.tbl_contains(ts_active_buffers, bufnr) then      status = "active"    end    return status  end  local header = {    fmt("Detected filetype:           %s", ft),    fmt("Current buffer number:       [%s]", bufnr),  }  local ts_info = {    "Treesitter info",    fmt("* current buffer:            %s", is_treesitter_active()),    fmt("* list:                      [%s]", table.concat(ts_active_buffers, ", ")),  }  local lsp_info = {    "Language Server Protocol (LSP) info",    fmt "* Associated server(s):",  }  for _, client in pairs(clients) do    vim.list_extend(lsp_info, make_client_info(client))    table.insert(client_names, client.name)  end  local formatters_info = make_formatters_info(ft)  local linters_info = make_linters_info(ft)  local content_provider = function(popup)    local content = {}    for _, section in ipairs {      M.banner,      { "" },      { "" },      header,      { "" },      ts_info,      { "" },      lsp_info,      { "" },      formatters_info,      { "" },      linters_info,    } do      vim.list_extend(content, section)    end    return text.align_left(popup, content, 0.5)  end  local function set_syntax_hl()    vim.cmd [[highlight LvimInfoIdentifier gui=bold]]    vim.cmd [[highlight link LvimInfoHeader Type]]    vim.cmd [[let m=matchadd("LvimInfoHeader", "Treesitter info")]]    vim.cmd [[let m=matchadd("LvimInfoHeader", "Language Server Protocol (LSP) info")]]    vim.cmd [[let m=matchadd("LvimInfoHeader", "Formatters info")]]    vim.cmd [[let m=matchadd("LvimInfoHeader", "Linters info")]]    vim.cmd('let m=matchadd("LvimInfoIdentifier", " ' .. ft .. '$")')    vim.cmd 'let m=matchadd("string", "true")'    vim.cmd 'let m=matchadd("string", "active")'    vim.cmd 'let m=matchadd("boolean", "inactive")'    vim.cmd 'let m=matchadd("string", "")'    vim.cmd 'let m=matchadd("error", "false")'    -- tbl_set_highlight(registered_providers, "LvimInfoIdentifier")    tbl_set_highlight(require("lvim.lsp.null-ls.formatters").list_available(ft), "LvimInfoIdentifier")    tbl_set_highlight(require("lvim.lsp.null-ls.linters").list_available(ft), "LvimInfoIdentifier")  end  local Popup = require("lvim.interface.popup"):new {    win_opts = { number = false },    buf_opts = { modifiable = false, filetype = "lspinfo" },  }  Popup:display(content_provider)  set_syntax_hl()  return Popupendreturn M
 |