7 lines
193 B
Fish
7 lines
193 B
Fish
function fish_list_themes --description "List available prompt themes"
|
|
for theme in $__fish_config_dir/themes/*
|
|
if test -d $theme
|
|
basename $theme
|
|
end
|
|
end
|
|
end |