fix(picker.files): include symlinks

This commit is contained in:
Folke Lemaitre 2025-01-23 14:37:09 +01:00
parent 431a24e24e
commit dc9c6fbd02
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -8,7 +8,7 @@ local uv = vim.uv or vim.loop
local commands = { local commands = {
rg = { "--files", "--no-messages", "--color", "never", "-g", "!.git" }, rg = { "--files", "--no-messages", "--color", "never", "-g", "!.git" },
fd = { "--type", "f", "--color", "never", "-E", ".git" }, fd = { "--type", "f", "--type", "l", "--color", "never", "-E", ".git" },
find = { ".", "-type", "f", "-not", "-path", "*/.git/*" }, find = { ".", "-type", "f", "-not", "-path", "*/.git/*" },
} }