Casey Rodarmor
Casey Rodarmor
Settings and variables are distinct, so `allow-duplicate-variables` doesn't help with settings. I'm a bit hesitant to add more `allow-duplicate-*` settings. They're really a hack to, originally, work around the lack...
`set? quiet` isn't great, because it introduces order dependence, which is something that `just` tries to avoid. When not using `allow-duplicate` settings or recipes, the order of everything in a...
That's definitely less bad. I vaguely worry that it would mask user error, but I think it would be okay, and probably what most people need. I want to let...
Thanks for the report! Hmm, interesting. Of the three lines of the error message, the first two aren't from `just`: ``` [ERROR] Failed to resolve script at path /run/user/1000/just/just-f6xD0P/lune (NotFound)...
@gotcha Good question! I was thinking that I would first write the completion script to a string while generating it in `config.rs`, and then modifying it before printing it. (Either...
That's an awesome trick! I'd be worried about adding it into the default script, just because it adds dependencies on `tail`, `sed`, and `tr`. But if you can modify the...
Ah, okay, I misunderstood. Actually, that's already available if you do `just --summary`, it'll print a space-separated list of recipe names on a single line.
Actually, can you check to see if you're using the latest version of Just? I think recipe completions may have already been added to the latest version of the bash...
> After upgrading to v5.4 I got it working. Ah, great. I don't use bash myself, so I forgot that it already had completions. > The only remark I can...
> This solution does not support aliases which are sometimes made up of several characters. I wasn't sure whether completion scripts should complete aliases, as well as full recipe names....