nvim-telescope / telescope-file-browser.nvim

File Browser extension for telescope.nvim
MIT License
1.68k stars 92 forks source link

Custom `fd` args #326

Closed MithicSpirit closed 11 months ago

MithicSpirit commented 11 months ago

Is your feature request related to a problem? Please describe. I have .ignore files in some places to prevent regular fd searches from having some files show up, but I don't want telescope-fb to ignore these files.

Describe the solution you'd like I would like to use the --no-ignore flag to tell fd to not heed the .ignore. Since there are no current options to do this, I believe that the best way would be to add an option for arguments that should be passed to fd. This would also overall increase flexibility.

Describe alternatives you've considered

jamestrew commented 11 months ago

I open to adding a no_ignore option.

Little bit hesitant about allowing full control over the all fd args since the picker can't handle that. Also I want to maintain some capability and feature parity between people using fd and those who don't (to be honest, I want to eventually make fd a hard requirement to simply things like this).