Paul Pogonyshev

Results 88 comments of Paul Pogonyshev
trafficstars

Probably giving up on this. Apparently there is no way in crappy Elisp to forward stdout/stderr from a child process, which makes running child processes that take non-trivial amount of...

I have decided to resurrect these ideas. Will be release soon (maybe tomorrow) in Eldev 1.2. Documentation is here: https://github.com/doublep/eldev/tree/future-doc#maintainer-plugin The major problem is that Elisp doesn't really allow proper...

It's somewhat difficult, since we cannot differentiate between stdout and stderr, and I don't want to lose stderr completely, since it is at least shown to the user in some...

Sorry, don't have much time for Eldev currently. Just released 0.11, so that should restore webinstall and MELPA synchronization, and hopefully resolve visible effects of this. I'll leave the bug...

This commit doesn't fix or improve anything, but at least it makes Eldev fail explicitly in such cases, so that it's easier to understand what's wrong.

You can probably do `(setf eldev-project-main-file "elisp/PROJECTS-MAIN-FILE.el")` in `Eldev`. Adjusting `eldev-main-fileset` is likely unnecessary in this case, since Eldev searches for files recursively with default settings anyway. However, it needs...

> Would you consider adding support for such programs to Eldev? Yes, but this is a case where I don't know how this should be handled. If you can provide...

It's a problem with Elisp, it doesn't really allow precise control over child processes. E.g. this is a trivial wrapper over `cat` in shellscript: #!/bin/sh cat echo done It "parrots"...