You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.5 KiB
Lua

if not pcall(require, "fzf") then
return
end
local fzf_helpers = require("fzf.helpers")
local core = require "fzf-lua.core"
local utils = require "fzf-lua.utils"
local config = require "fzf-lua.config"
local actions = require "fzf-lua.actions"
local M = {}
local function getmanpage(line)
-- extract section from the last pair of parentheses
local name, section = line:match("^(.*)%((.-)%)[^()]-$")
if name:sub(-1) == " " then
-- man-db
name = name:sub(1, -2)
else
-- mandoc
name = name:match("^[^, ]+")
section = section:match("^[^, ]+")
end
return name .. "(" .. section .. ")"
end
M.manpages = function(opts)
opts = config.normalize_opts(opts, config.globals.manpages)
coroutine.wrap(function ()
-- local prev_act = action(function (args) end)
local fzf_fn = fzf_helpers.cmd_line_transformer(opts.cmd, function(x)
-- split by first occurence of ' - ' (spaced hyphen)
local man, desc = x:match("^(.-) %- (.*)$")
return string.format("%-45s %s",
utils.ansi_codes.red(man), desc)
end)
opts._fzf_cli_args = "--tiebreak begin --nth 1,2"
opts.preview_window = opts.preview_window or 'right:0'
opts.nomulti = utils._if(opts.nomulti~=nil, opts.nomulti, true)
local selected = core.fzf(opts, fzf_fn,
core.build_fzf_cli(opts),
config.winopts(opts))
if not selected then return end
if #selected > 1 then
for i = 2, #selected do
selected[i] = getmanpage(selected[i])
end
end
actions.act(opts.actions, selected)
end)()
end
return M