Add support for `.pferdignore`
pavelzw opened this issue · 3 comments
pavelzw commented
It would be nice to support a way to ignore files in the crawled folders, like .DS_Store
on macOS for example.
x51mon commented
Are there plans to implement this feature?
Having a subfolder with external material and lots of files the prompts can get quite annoying. Or is there some workaround without changing the option on_conflict = prompt
?
I-Al-Istannen commented
pavelzw commented
My current workaround:
function pferd() {
find ~/pferd -name '.DS_Store' -delete;
~/pferd/pferd-mac -c ~/pferd/pferd-ws2324.cfg "$@";
}
But i guess show_not_deleted
in combination with no-delete-prompt-override
works fine too 👍🏻