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.

67 lines
1.6 KiB
Lua

if not pcall(require, "fzf") then
return
end
-- local fzf = require "fzf"
local fzf_helpers = require("fzf.helpers")
-- local path = require "fzf-lua.path"
local core = require "fzf-lua.core"
local utils = require "fzf-lua.utils"
local config = require "fzf-lua.config"
local M = {}
local get_files_cmd = function(opts)
if opts.cmd and #opts.cmd>0 then
return opts.cmd
end
local command = nil
if vim.fn.executable("fd") == 1 then
if not opts.cwd or #opts.cwd == 0 then
command = string.format('fd %s', opts.fd_opts)
else
command = string.format('fd %s . %s', opts.fd_opts,
vim.fn.shellescape(vim.fn.expand(opts.cwd)))
end
else
command = string.format('find %s %s',
utils._if(opts.cwd and #opts.cwd>0, vim.fn.shellescape(opts.cwd), '.'),
opts.find_opts)
end
return command
end
M.files = function(opts)
opts = config.getopts(opts, config.files, {
"cmd", "prompt", "actions", "winopts",
"file_icons", "color_icons", "git_icons",
"fd_opts", "find_opts",
})
local command = get_files_cmd(opts)
opts.fzf_fn = fzf_helpers.cmd_line_transformer(command,
function(x)
return core.make_entry_file(opts, x)
end)
return core.fzf_files(opts)
end
M.git_files = function(opts)
local output = vim.fn.systemlist("git status")
if utils.shell_error() then
utils.info(unpack(output))
return
end
opts = config.getopts(opts, config.git, {
"cmd", "prompt", "actions", "winopts",
"file_icons", "color_icons", "git_icons",
})
-- opts.cmd sets this to "git ls-files"
return M.files(opts)
end
return M