Put recipe completions first in powershell
When accessing tab completions for a justfile in PowerShell:
This is using MenuComplete which shows an interactive menu of completions. Notice that my recipes are at the end of the list, I have to press right arrow 6 times to get to the far right column.[^1]
I think the completion script should return recipes first, --flags after. It's easy to type a - to filter results down to options if that's what I want. But it's not possible to do the opposite because each recipe begins with a different letter.
The bash completion script is written in the same spirit: it doesn't even show --flags unless you type an initial hyphen.
I think this is a one-line change swapping concatenation order here:
https://github.com/casey/just/blob/2442930d75c7000bc004ccdd5b8c35e502b22966/completions/just.powershell#L116C5-L116C29
[^1]: It's true that you can start typing the name of a recipe to narrow things down, but visually jumping your eyes to the far right is still not ideal.