oh-my-fish/pkg/omf/functions/packages/omf.packages.list.fish

32 lines
708 B
Fish
Raw Normal View History

set -l builtin_packages {$OMF_PATH,$OMF_CONFIG}/pkg*/{omf,fish-spec}
2015-10-07 04:31:44 +08:00
function omf.packages.list -d 'List installed packages'
set -l show_plugins
set -l show_themes
2015-10-07 04:31:44 +08:00
if begin; contains -- --plugin $argv; or contains -- -p $argv; end
set -e show_themes
2015-10-07 04:31:44 +08:00
end
if begin; contains -- --theme $argv; or contains -- -t $argv; end
set show_themes
set -e show_plugins
2015-10-07 04:31:44 +08:00
end
set -l plugins_paths $OMF_PATH/pkg/*
set -l themes_paths $OMF_PATH/themes/*
2015-10-07 04:31:44 +08:00
if set -q show_plugins
for path in $plugins_paths
contains $path $builtin_packages; or command basename $path
end
2015-10-07 04:31:44 +08:00
end
if set -q show_themes
for path in $themes_paths
command basename $path
end
2015-10-07 04:31:44 +08:00
end
end