Casey Rodarmor
Casey Rodarmor
To avoid making this a backwards incompatible change, only strings and backticks preceeded by an `f` will allow interpolation: ``` bar := "world" foo := f"Hello, {{bar}}!" baz := f`echo...
Users often have scripts they'd like to source, alias they'd like to define, or environment variables they'd like to set for all or most shells in a justfile. One possible...
The bash completion script does not suggest recipe names if there's already a flag on the command line. So, for example: ``` just --quiet ``` Does not complete available recipe...
It should be possible, when a variadic parameter receives multiple arguments, to call a dependency for each of those arguments: This could look like: ```just foo *args: (bar *args) @bar...
Embed Python
@runeimp and I discussed this a bit in #531, but I thought that it would be good to give it its own issue. In that thread, we discussed embedding a...
The current nushell completion script, in `src/completions.rs` `NUSHELL_COMPLETION_SCRIPT` only completes recipe names. We should integrate [clap_complete_nushell](https://crates.io/crates/clap_complete_nushell), so we can also complete flags and other arguments. Note that `clap_complete_nushell` doesn't complete...
Recipes should be able to define options: ``` foo --bar BAZ: echo {{BAZ}} ``` Maybe flags too: ``` foo --BAZ: echo {{BAZ}} # is it "true" or "false"? Or ""...
Originally posted by **gl-yziquel** May 26, 2024 Hi. I've got a use case that seems to go counter to current Just behavious, and, as suggested on a bug report discussion,...
Please subscribe to this issue if you'd like to receive notifications for requests for user feedback. Situations often arise in which user feedback would be very helpful. Some examples are:...