Rarg_Run › Ok › AutoCompleteScript - zsh
Ok
AutoCompleteScript
<cyan>To append to your shell config run:</cyan>
<white>fruits --rarg-suggestions-script >> ~/.zshrc</white>
<cyan>Afterwards restart your terminal</cyan>
###-begin-fruits-completions-###
# Autogenerated, do not edit manually
########################################
_rarg_fruits_completions()
{
  local reply
  local si=$IFS
  IFS=$'\\n' reply=($(COMP_CWORD=\"$((CURRENT-1))\" COMP_LINE=\"$BUFFER\" COMP_POINT=\"$CURSOR\" fruits \"${words[@]:1}\" --rarg-suggestions-request zsh))
  IFS=$si
  _describe 'values' reply
}
compdef _rarg_fruits_completions fruits
###-end-fruits-completions-###
