mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 02:27:28 +08: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
|