Arcesilas

Results 29 comments of Arcesilas

Great! Thanks for your answer!

Here's a very basic example of how multiple subcommands can be handled with CLImate without writing much code: https://gist.github.com/Arcesilas/06abb3b2e94f50b3bdff415b68a3213f This example does not handle the subcommand, it simply extracts it...

I did not verify, but I think Atom uses regex like this to perform search: when searching `word`, it will search `.*w.*o.*r.*d.*` Which is pretty nice when we don't remember...

Any project that follows [Vincent Driessen's](http://nvie.com/posts/a-successful-git-branching-model/) git branching model has the latest release in master. I don't know such project, but this model has some success. It does clarify thing....

I know this issue is quite old, but here's a solution (with latest version of Atom, obviously): I could not find a way to get the terminal directly, since it...

What about having an `ArgumentExceptionHandler` that user could extend or replace? If none is defined when time comes to handle the `ExceptionBag` (or whatever we call it or use), then...

Actually, there is no need to handle process errors: by default, exceptions are thrown, so that there is no BC break. If the user decides to not throw errors (I'm...

That's right. Could look like this: https://github.com/Arcesilas/getopt-php/commit/ca2baca811cd43b0a95017777fe187607adedfba

It appears that exceptions may be thrown from `Arguments::process()`, more precisely from `Argument::setValue()`, when the value does not pass validation. It would then require the `Argument` (`Operand` or `Option`) to...

In what I had in mind, `THROW_EXCEPTIONS` and `STOP_ON_ERRORS` were exactly the same. I'm not sure it's relevant to stop on errors and not throw exceptions: it's exactly the same...