.dotfiles/completions/_fx

20 lines
274 B
Plaintext
Raw Normal View History

2021-07-04 15:54:39 +02:00
#compdef fx
_fx(){
local state
_arguments \
'1: :->action'\
'*: :->folder_name'
case $state in
(action) _arguments '1:profiles:(s i o)' ;;
2022-04-15 14:52:17 +02:00
(*) compadd "$@" $(echo $(ls ~/Projects) | tr \\n ' ')
2021-07-04 15:54:39 +02:00
esac
}
_fx "$@"