Jonathan Coates

Results 565 comments of Jonathan Coates

I think it's useful to split errors into two categories: - Runtime errors: these are errors that occur due to bugs in the program (e.g. `Too long without yielding`, `attempt...

Yeah, the way paths are handled within CC has been a long-standing complaint of mine. It's confusing, and very easy to get wrong (indeed, even [CC screws this up](https://github.com/cc-tweaked/CC-Tweaked/commit/9eead7a0ec392ac2985a57c6a6fa5405f7711686)). Unfortunately,...

Having spent some time thinking about this, I'm afraid I'm going to mark this as wontfix. I like the current simplicity of the inventory storage API, and don't think this...

We made a couple of changes to monitors in the last couple of versions. Would you be able to update to 1.110.0 and see if that resolves this issue?

> In your example, there is no store because the engine does not support capture inside reduction yet. The reason is that the reductions are simulated, they are not computed,...

At a guess you added a trailing new line when @oeed didn't have one. Every file should have a trailing new line, so no harm done.

I wonder if this could be built as a extension of TRoR rather than a copy of it. However there may be times you want file transfer without terminal syncing.

I can see the use of a sane clipboard system, but a couple of thoughts: - It should probably be a global API instead of just a table which one...

I think this probably needs a little bit more rewording than just replacing every instance of `/tmp` with `settings.get("tempdir", "/tmp")`. I'm also curious of your use-case here? It seems to...

It might be worth saying that function calls or definitions are invalid, or alternatively the only valid expressions are tables, strings, numbers, boolean values and `nil`.