git-link icon indicating copy to clipboard operation
git-link copied to clipboard

use user-error to signal errors

Open wbolster opened this issue 6 years ago • 3 comments

first, thanks for this package!

that said, please use (user-error ...) instead or (message ...) to signal errors, so that i can catch them and do something sensible.

this would allow me to write a function that would first try (git-link-commit), falling back to (git-link) in case that fails, which would basically "do what i mean" in 99% of my use cases.

let me know whether i should submit a pr!

wbolster avatar Jul 26 '17 10:07 wbolster

Hi, I only call error in git-link-homepage. messages is most everywhere.

Can you provide more info? Thanks!

sshaw avatar Jul 26 '17 11:07 sshaw

yeah, my suggestion is to use (user-error) instead of (message) when something goes wrong. right now you use (message) which does not trigger an error that can be caught.

i want to be able to do something like this:

    (condition-case nil
        (git-link-commit)
      (user-error
       (git-link)))

but it seems right now i cannot.

wbolster avatar Jul 26 '17 12:07 wbolster

Got it, makes sense. I'll have to look into user-error.

You may also want to checkout the PRs and issues. There's talk of making a git-link-dwim function or maybe even changing git-link to fallback to git-link-commit.

I think changing these functions to signal errors will require releasing a 1.0 version.

sshaw avatar Jul 27 '17 04:07 sshaw