20 lines
274 B
Plaintext
Executable File
20 lines
274 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 $(ls ~/Projects) | tr \\n ' ')
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
_fx "$@"
|