summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/core/info.lua
blob: 646cf71d34170d09e6417051599bb7b0cf64c8e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
local M = {
  banner = {
    "",
    [[ _    ___         ]],
    [[| |  / (_)___ ___ ]],
    [[| | / / / __ `__ \]],
    [[| |/ / / / / / / /]],
    [[|___/_/_/ /_/ /_/ ]],
  },
}

local fmt = string.format
local text = require "interface.text"
local lsp_utils = require "lsp.utils"

local function str_list(list)
  return fmt("[ %s ]", table.concat(list, ", "))
end

local function make_formatters_info(ft)
  local null_formatters = require "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 section
end

local function make_code_actions_info(ft)
  local null_actions = require "lsp.null-ls.code_actions"
  local registered_actions = null_actions.list_registered_providers(ft)
  local supported_actions = null_actions.list_available(ft)
  local section = {
    "Code actions info",
    fmt(
      "* Active: %s%s",
      table.concat(registered_actions, "  , "),
      vim.tbl_count(registered_actions) > 0 and "  " or ""
    ),
    fmt("* Supported: %s", str_list(supported_actions)),
  }

  return section
end

local function make_linters_info(ft)
  local null_linters = require "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 section
end

local function tbl_set_highlight(terms, highlight_group)
  for _, v in pairs(terms) do
    vim.cmd('let m=matchadd("' .. highlight_group .. '", "' .. v .. "[ ,│']\")")
  end
end

local 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 filetypes = lsp_utils.get_supported_filetypes(name)
  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("* filetype(s):               [%s]", table.concat(filetypes, ", ")),
    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_info
end

function 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 "* Active 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 code_actions_info = make_code_actions_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 NvimInfoIdentifier gui=bold]]
    vim.cmd [[highlight link NvimInfoHeader Type]]
    vim.cmd [[let m=matchadd("NvimInfoHeader", "Treesitter info")]]
    vim.cmd [[let m=matchadd("NvimInfoHeader", "Language Server Protocol (LSP) info")]]
    vim.cmd [[let m=matchadd("NvimInfoHeader", "Formatters info")]]
    vim.cmd [[let m=matchadd("NvimInfoHeader", "Linters info")]]
    vim.cmd [[let m=matchadd("NvimInfoHeader", "Code actions info")]]
    vim.cmd('let m=matchadd("NvimInfoIdentifier", " ' .. 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, "NvimInfoIdentifier")
    tbl_set_highlight(
      require("lsp.null-ls.formatters").list_available(ft),
      "NvimInfoIdentifier"
    )
    tbl_set_highlight(
      require("lsp.null-ls.linters").list_available(ft),
      "NvimInfoIdentifier"
    )
    tbl_set_highlight(
      require("lsp.null-ls.code_actions").list_available(ft),
      "NvimInfoIdentifier"
    )
  end

  local Popup = require("interface.popup"):new {
    win_opts = { number = false },
    buf_opts = { modifiable = false, filetype = "lspinfo" },
  }
  Popup:display(content_provider)
  set_syntax_hl()

  return Popup
end
return M