mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-15 12:12:45 +00:00
13 lines
321 B
Fish
13 lines
321 B
Fish
function omf.cli.list
|
|
switch (count $argv)
|
|
case 0
|
|
echo (set_color -u)Plugins(set_color normal)
|
|
omf.packages.list --installed --plugin | column
|
|
echo
|
|
echo (set_color -u)Themes(set_color normal)
|
|
omf.packages.list --installed --theme | column
|
|
case '*'
|
|
omf.packages.list $argv | column
|
|
end
|
|
end
|