Skip to content

Commit

Permalink
updated optionlist fro plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
bgol committed Jul 3, 2016
1 parent 3f802f5 commit d8855ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/td-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -120,17 +120,17 @@ _td_import()
for (( i=1; i<${COMP_CWORD-1}; i++ ));
do
if [[ "${COMP_WORDS[i]}" = "maddavo" ]]; then
opts="csvs corrections systems stations shipvendors exportcsv csvonly skipdl force use3h use2d usefull help"
opts="corrections csvonly csvs exportcsv force shipvendors skipdl stations systems use2d use3h usefull help"
COMPREPLY+=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
if [[ "${COMP_WORDS[i]}" = "edapi" ]]; then
opts=""
opts="csvs edcd eddn name save help"
COMPREPLY+=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
if [[ "${COMP_WORDS[i]}" = "netlog" ]]; then
opts="show last date"
opts="date last show help"
COMPREPLY+=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
Expand Down

0 comments on commit d8855ef

Please sign in to comment.