mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-05 19:28:24 +00:00
fix(picker.files): include symlinks
This commit is contained in:
parent
431a24e24e
commit
dc9c6fbd02
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ local uv = vim.uv or vim.loop
|
|||
|
||||
local commands = {
|
||||
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/*" },
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue