mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-27 06:31:19 -03:00
7 lines
169 B
Fish
7 lines
169 B
Fish
|
|
function __fish_print_ninja_tools
|
||
|
|
echo list
|
||
|
|
if [ -f build.ninja ]
|
||
|
|
ninja -t list | string match -v '*:' | string replace -r '\s+(\w+).*' '$1'
|
||
|
|
end
|
||
|
|
end
|