Phil Hagelberg

Results 169 comments of Phil Hagelberg

Ahh... I see now that it's happening inside the parser; I did not expect that. > If using the environment variable with `include` is important then the > cleanest way...

If this isn't a good fit for inclusion in microscheme, maybe it would be better to call `(set! arduino-pins ...)` and `(set! arduino-ports ...)` from menelaus instead?

I finally got around to loading Microscheme on my Keyboardio Atreus, and this PR works great for that. But I think the "raw 32u4" model makes more sense as a...

I ran into trouble with this too. The problem I ran into with this is that `busted.runner` gets its configuration directly from `arg`, and there doesn't seem to be a...

Unfortunately as far as I can tell, async completion is only available in `company.el`, that is, a 3rd-party library. I don't know of any way to do this correctly without...

> I feel that we can send in the message on which buffer completion at point it's getting called. And then, in the callback function, switch to that buffer in...

I'm fine with dropping the Atreus from the official section of the readme; that's sensible at this point.

Sounds like this is not something you're interested in, so I'll just continue to use my own fork.

It looks like a table, but I think it's just because luaj accidentally called `tostring` on the table and returned that. Either that or the `type` function is blatantly lying.

```lua local function err_handler() return {} end local ok, err = xpcall(function() error({}) end, err_handler) print("table err", err.gmatch, type(err)) local ok, err = xpcall(function() error("oh no") end, err_handler) print("string err",...