Casey Rodarmor
Casey Rodarmor
See https://github.com/casey/just/issues/2314#issuecomment-2740579171. @cspotcode, what do you think of the naming here? `/` is the COMPONENT_SEPARATOR, because it separates components, `;` is the PATH_SEPARATOR, because it separates paths. I want to...
Fixes #2604. @john-cd Since which version of windows is `pwsh.exe` installed on by default? I want to make sure it's widely available before changing the docs.
Incomplete initial implementation in #2531. Needs at least string parsing, environment variable access, and throwing an error on unsupported shell constructs to be useful. I'm honestly not sure it's worth...
I'm considering adding a user config file to just. Rust and serde make it so simple to do that it seems like a no brainer. I'm not entirely sure which...
Currently, a `+` argument is a string consisting of the original arguments separated by spaces. This presents difficulties, since the shell will re-split the text. If the argument contains intra-argument...
When duplicate recipes are in the same module, the later one overrides the earlier one: ``` set allow-duplicate-recipes foo: foo: echo winner ``` When they are in imports, because `just`...
I have a rust project which uses a few shell scripts that need commands from other crates. I added them as dev-dependencies, but I couldn't find the binaries anywhere. It...
Great library! It would be nice to support title case for table headers, i.e., `Upper Title Case` and `lower title case`. If a table is primarily intended for a human...
Currently, the `Display` implementation for `LoadError` displays`Debug` output for `LoadError::MissingDescriptor` and `LoadError::Mismatch`: ```rust impl fmt::Display for LoadError { fn fmt(&self, f: &mut fmt::Formatter
This is a small refactor that hopefully improves readability slightly. Currently, the rusqlite connection persister and transaction persister are entirely different implementations, even though the connection persister just creates a...