mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
2de3f7c686
Part of #5279 [ci skip]
25 lines
1.2 KiB
Fish
25 lines
1.2 KiB
Fish
function __fish_print_ninja_tools
|
|
echo list
|
|
if test -f build.ninja
|
|
ninja -t list | string match -v '*:' | string replace -r '\s+(\w+).*' '$1'
|
|
end
|
|
end
|
|
|
|
function __fish_print_ninja_targets
|
|
if test -f build.ninja
|
|
ninja -t targets 2>/dev/null | string replace -r ':.*' ''
|
|
end
|
|
end
|
|
complete -c ninja -f -a '(__fish_print_ninja_targets)' -d target
|
|
complete -x -c ninja -s t -x -a "(__fish_print_ninja_tools)" -d subtool
|
|
complete -x -c ninja -s C -x -a "(__fish_complete_directories (commandline -ct))" -d "change to specified directory"
|
|
complete -c ninja -s f -x -a "(__fish_complete_suffix .ninja)" -d "specify build file [default=build.ninja]"
|
|
complete -f -c ninja -s n -d "dry run"
|
|
complete -f -c ninja -s v -d "show all command lines while building"
|
|
complete -f -c ninja -s j -d "number of jobs to run in parallel [default derived from CPUs]"
|
|
complete -f -c ninja -s l -d "do not start if load average > N"
|
|
complete -f -c ninja -s k -d "keep going until N jobs fail [default=1]"
|
|
complete -f -c ninja -s h -d "show help"
|
|
complete -f -c ninja -s d -d "enable debugging, specify debug mode"
|
|
complete -f -c ninja -s w -d "adjust warnings, specify flags"
|
|
complete -f -c ninja -l version -d "print ninja version"
|