mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
7 lines
202 B
Fish
7 lines
202 B
Fish
# List all custom packages and packages installed from the registry.
|
|
function omf_list_local_packages
|
|
for item in (basename {$OMF_PATH,$OMF_CUSTOM}/pkg/*)
|
|
test $item = wa; or echo $item
|
|
end
|
|
end
|