mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 17:28:19 +00: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
|