Files
outline.nvim/lua/outline/help.lua

175 lines
5.1 KiB
Lua

local Float = require('outline.float')
local cfg = require('outline.config')
local utils = require('outline.utils')
local M = {}
function M.show_keymap_help()
local keyhint = 'Press q or <Esc> to close this window.'
local title = 'Current keymaps:'
local lines = { keyhint, '', title, '' }
---@type outline.HL[]
local hl = { { line = 0, from = 0, to = #keyhint, name = 'OutlineHelpTip' } }
local left = {}
local right = {}
local max_left_width = 0
local indent = ' '
local key_hl = 'OutlineKeymapHelpKey'
for action, keys in pairs(cfg.o.keymaps) do
if type(keys) == 'string' then
table.insert(left, keys)
table.insert(hl, {
line = #left + 3,
from = #indent,
to = #keys + #indent,
name = key_hl,
})
elseif next(keys) == nil then
table.insert(left, '(none)')
table.insert(hl, {
line = #left + 3,
from = #indent,
name = 'OutlineKeymapHelpDisabled',
to = #indent + 6,
})
else
local i = #indent
table.insert(left, table.concat(keys, ' / '))
for _, key in ipairs(keys) do
table.insert(hl, {
line = #left + 3,
from = i,
to = #key + i,
name = key_hl,
})
i = i + #key + 3
end
end
if #left[#left] > max_left_width then
max_left_width = #left[#left]
end
table.insert(right, action)
end
for i, l in ipairs(left) do
local pad = string.rep(' ', max_left_width - #l + 2)
table.insert(lines, indent .. l .. pad .. right[i])
end
local f = Float:new()
f:open(lines, hl, 'Outline Help', 1)
utils.nmap(f.bufnr, { 'q', '<Esc>' }, function()
f:close()
end)
end
local function get_filter_list_lines(f)
if f == nil then
return { '(not configured)' }
elseif f == false or (f and #f == 0 and f.exclude) then
return { '(all symbols included)' }
end
return vim.split(vim.inspect(f), '\n', { plain = true })
end
---Display outline window status in a floating window
---@param ctx outline.StatusContext
function M.show_status(ctx)
local keyhint = 'Press q or <Esc> to close this window.'
local lines = { keyhint, '' }
---@type outline.HL[]
local hl = { { line = 0, from = 0, to = #keyhint, name = 'OutlineHelpTip' } }
local p = ctx.provider
---@type string[]
local priority = ctx.priority
local pref
local indent = ' '
if ctx.ft then
pref = 'Filetype of current or attached buffer: '
table.insert(lines, pref .. ctx.ft)
table.insert(hl, { line = #lines - 1, from = #pref, to = -1, name = 'OutlineStatusFt' })
table.insert(lines, 'Symbols filter:')
table.insert(lines, '')
for _, line in ipairs(get_filter_list_lines(ctx.filter)) do
table.insert(lines, indent .. line)
end
table.insert(lines, '')
else
table.insert(lines, 'Filetype of current or attached buffer: N/A')
table.insert(lines, 'Symbols filter: N/A')
table.insert(lines, 'Buffer number of code was invalid, could not get filetype!')
table.insert(hl, { line = #lines - 1, from = 0, to = -1, name = 'OutlineStatusError' })
table.insert(lines, '')
end
table.insert(lines, 'Default symbols filter:')
table.insert(lines, '')
for _, line in ipairs(get_filter_list_lines(ctx.default_filter)) do
table.insert(lines, indent .. line)
end
table.insert(lines, '')
if utils.table_has_content(priority) then
pref = 'Configured providers are: '
table.insert(lines, pref .. table.concat(priority, ', ') .. '.')
local i = #pref
for _, name in ipairs(priority) do
table.insert(
hl,
{ line = #lines - 1, from = i, to = i + #name, name = 'OutlineStatusProvider' }
)
i = i + #name + 2
end
else
pref = 'config '
local content = 'providers.priority'
table.insert(lines, pref .. content .. ' is an empty list!')
table.insert(
hl,
{ line = #lines - 1, from = #pref, to = #pref + #content, name = 'OutlineStatusError' }
)
end
if p ~= nil then
pref = 'Current provider: '
table.insert(lines, pref .. p.name)
table.insert(hl, { line = #lines - 1, from = #pref, to = -1, name = 'OutlineStatusProvider' })
if p.get_status then
table.insert(lines, 'Provider info:')
table.insert(lines, '')
for _, line in ipairs(p.get_status()) do
table.insert(lines, indent .. line)
end
end
table.insert(lines, '')
table.insert(
lines,
('Outline window is %s.'):format((ctx.outline_open and 'open') or 'not open')
)
if ctx.code_win_active then
table.insert(lines, 'Code window is active.')
else
table.insert(lines, 'Code window is not active!')
table.insert(lines, 'Try closing and reopening the outline.')
table.insert(hl, { line = #lines - 2, from = 0, to = -1, name = 'OutlineStatusError' })
table.insert(hl, { line = #lines - 1, from = 0, to = -1, name = 'OutlineStatusError' })
end
else
table.insert(lines, 'No supported providers for current buffer.')
end
local f = Float:new()
f:open(lines, hl, 'Outline Status', 1)
utils.nmap(f.bufnr, { 'q', '<Esc>' }, function()
f:close()
end)
end
return M