mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
c78750499d
* Create just.fish justfile completions for tasks similar to make completions for targets * no need for the match at all
4 lines
126 B
Fish
4 lines
126 B
Fish
function _justfile_targets
|
|
just --summary 2>/dev/null | string split ' '
|
|
end
|
|
complete -c just -a '(_justfile_targets)' -f
|