mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
6 lines
169 B
Fish
6 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
|