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.

85 lines
2.2 KiB
Lua

local core = require "fzf-lua.core"
local utils = require "fzf-lua.utils"
local config = require "fzf-lua.config"
local M = {}
local function POSIX_find_compat(opts)
local ver = utils.find_version()
-- POSIX find does not have '--version'
-- we assume POSIX when 'ver==nil'
if not ver and opts:match("%-printf") then
utils.warn("POSIX find does not support the '-printf' option." ..
" Install 'fd' or set 'files.find_opts' to '-type f'.")
end
end
local get_files_cmd = function(opts)
if opts.raw_cmd and #opts.raw_cmd>0 then
return opts.raw_cmd
end
if opts.cmd and #opts.cmd>0 then
return opts.cmd
end
local command = nil
if vim.fn.executable("fd") == 1 then
command = string.format('fd %s', opts.fd_opts)
elseif vim.fn.executable("rg") == 1 then
command = string.format('rg %s', opts.rg_opts)
else
POSIX_find_compat(opts.find_opts)
command = string.format('find -L . %s', opts.find_opts)
end
return command
end
M.files = function(opts)
opts = config.normalize_opts(opts, config.globals.files)
if not opts then return end
opts.cmd = get_files_cmd(opts)
local contents = core.mt_cmd_wrapper(opts)
opts = core.set_header(opts, 2)
return core.fzf_files(opts, contents)
end
M.args = function(opts)
opts = config.normalize_opts(opts, config.globals.args)
if not opts then return end
local entries = vim.fn.execute("args")
entries = utils.strsplit(entries, "%s\n")
-- remove the current file indicator
-- remove all non-files
local args = {}
for _, s in ipairs(entries) do
if s:match('^%[') then
s = s:gsub('^%[', ''):gsub('%]$', '')
end
local st = vim.loop.fs_stat(s)
if opts.files_only == false or
st and st.type == 'file' then
table.insert(args, s)
end
end
entries = nil
local contents = function (cb)
for _, x in ipairs(args) do
x = core.make_entry_file(opts, x)
if x then
cb(x, function(err)
if err then return end
-- close the pipe to fzf, this
-- removes the loading indicator in fzf
cb(nil, function() end)
end)
end
end
utils.delayed_cb(cb)
end
return core.fzf_files(opts, contents)
end
return M