Peter Munch-Ellingsen

Results 251 comments of Peter Munch-Ellingsen

Yes the JSON output of parsetoml is for testing through the burntsushi TOML conformance test. Having a native `to` would be nice.

This is something I've wanted to support for a while, and hopefully with the upcoming redesign it would be easy to simply add a little switch for it

Could you drop that last part into the README? And how does this differ from the logic already in the `opir.nims` file? I'm not familiar with how OSX handles their...

Good idea, I'll have to see what is possible with the editor we're using though. Will keep it in mind when the site is being redesigned.

Hmm, not exactly on purpose. I wrote `forNode` first, figured I also needed some context for a modification I was making so I wrote `forNodePos`. But the latter needed to...

Ah, it seems like the `macros` package has added a `body` proc since `macroutils` was last updated. You can circumvent this with `import macros except body` (or the same for...

Another option is to fully qualify it when you use it so `macroutils.body(myNode)`

What happens in GDB when another process is started with the linux [`exec`](https://linux.die.net/man/3/execvp)? According to the documentation that "replaces the current process image with a new process image" so I'm...

Well it is able to run things from dynamic libraries, so it might work for exec as well, bit depending on how exec actually works (haven't really looked into this...

The fix for #35 fixed this as well (I think it was the same bug). In any case I can verify that this also produces the correct output now.