Casey Rodarmor
Casey Rodarmor
@ssokolow, we discussed this a bit in #114 What do you think?
I agree that it's an ugly solution, but with the Bourne shell's terrible splitting semantics, it feels like it's the best worst option. Auto-quoting variables is interesting, but requiring users...
Hi Vesa! What you're doing is really cool, it would be nice to support subcommands natively. Unfortunately I don't think there's a good way to work around this right now....
It's definitely not ideal, but I'm glad that you were able to find a workaround. I just opened #383, which I hope eventually leads to just natively supporting submodules and...
@kwshi I agree with your thoughts on `quote()`. One thing that's stopped me from adding `quote()` is would ideally be a function from `List → List`, and Just currently only...
Another option is justception: Just's config file IS A JUSTFILE. By adding a `set SETTING = VALUE` construct, everything could be configured on a per-user or per-justfile basis. Also, the...
XDG base directory support is definitely a must have!
No tests break when we use the stack like a queue: ```rust while !stack.is_empty() { let ast = stack.remove(0); … } ``` So we probably just didn't consider this.
I changed the name to `PATH_SEP` and `PATH_VAR_SEP`. Kinda wanna let this sit for a second in case anyone has any feedback.
I think I probably wouldn't want to try to guess where `cygpath.exe` is. However, we could add a command line flag `--cygpath` which takes the path to the `cygpath.exe` executable....