You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
...
filesystem = {
find_command = "fd", -- this is determined automatically, you probably don't need to set it
find_args = { -- you can specify extra args to pass to the find command.
fd = {
'--exclude',
'.git',
'--exclude',
'node_modules',
'--exclude',
'site-packages',
'--exclude',
'vendor',
},
},
},
...
}
When expanded the arguments (search ses) , the arguments are
The position of -- is incorrect.
For most shell command we can not add any arguments start with - after --.
Also, another issue is
hide_gitignored = false,
I want to show files ignored by git. But this setup adds "--no-ignore", this option ignores .gitignore, .git/info/exclude, .ignore and .fdignore setup. In my setup, those ignored files are different.
I would suggest adding fd_no_ignore
The text was updated successfully, but these errors were encountered:
#86
Issue existed in 2.x branch
Suppose I using this setup
When expanded the arguments (search
ses
) , the arguments areWhich is incorrect
It should be
The position of
--
is incorrect.For most shell command we can not add any arguments start with
-
after--
.Also, another issue is
I want to show files ignored by git. But this setup adds
"--no-ignore",
this option ignores.gitignore
,.git/info/exclude
,.ignore
and.fdignore
setup. In my setup, those ignored files are different.I would suggest adding
fd_no_ignore
The text was updated successfully, but these errors were encountered: