.dotfiles/completions/_fx
2023-02-07 17:50:26 +01:00

20 lines
333 B
Plaintext
Executable File

#compdef fx
_fx(){
local state
_arguments \
'1: :->action'\
'*: :->folder_name'
case $state in
(action) _arguments '1:profiles:(s i o)' ;;
(*) compadd "$@" $(echo $(find ~/Projects -type d -maxdepth 2 | sed 's/\/home\/max\/Projects\///g') | tr \\n ' ')
esac
}
_fx "$@"