We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23033df commit a5a4bb4Copy full SHA for a5a4bb4
_fast-theme
@@ -26,6 +26,12 @@ arguments=(
26
typeset -a themes
27
themes=( "$FAST_WORK_DIR"/themes/*.ini(:t:r) )
28
29
+if [[ -d ${XDG_CONFIG_HOME:-$HOME/.config}/fsh ]] {
30
+ typeset -a themes2
31
+ themes2=( "${XDG_CONFIG_HOME:-$HOME/.config}"/fsh/*.ini(:t:r) )
32
+ themes+=( XDG:${^themes2[@]} )
33
+}
34
+
35
_wanted themes expl "Themes" \
36
compadd "$@" -a - themes && ret=0
37
_arguments -s $arguments && ret=0
0 commit comments