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