Garmelon/PFERD

Add support for `.pferdignore`

pavelzw opened this issue · 3 comments

It would be nice to support a way to ignore files in the crawled folders, like .DS_Store on macOS for example.

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?

There is dbc2553 and 443f7fe now (also documented in the config.md), which might be good enough.

A full .pferdignore is a lot more complicated to use and raises quite a few design questions.

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 👍🏻