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