Devyn Cairns

Results 83 comments of Devyn Cairns

Would being able to define stuff like aliases statically work for your use case, or must it be modifiable from a command? I think I can support modifying things like...

I think this would probably make `SharedCow` mostly unnecessary too, we can just use `EcoVec` for lists if we want to try that as well. Also gives us `EcoString` if...

I remember seeing in a comment that we were using `im` at some point. Based on what I remember hearing second-hand because wasn't a part of this at the time,...

Yep, that doesn't seem right. Will have to look at the parse tree.

I just gave it a test and while the error is gone and `complete` returns exit codes, I don't seem to be seeing `LAST_EXIT_CODE` set even for very simple commands...

One option that does generally work on all platforms is to suggest changing the default shell command of the terminal emulator. This is what I personally do, and it's what...

One idea I had for this was to only allow external commands without `^` to be used from the REPL, and require it in scripts (including config) I don't know...

I don't know if this is the right place for a hook, but maybe that's another option - just having an exit hook. Have to watch out for `exit()` gotchas

I think it's intentional that newlines are allowed inside tables, so that you can see multi-line values. We also allow ANSI escapes to go through and this is critical for...

Hmm, but at that point we have to start parsing ANSI escape sequences to try to sort out the good ones from the bad ones. Is this coming up somewhere...