Skip to content

Commit

Permalink
bash_autocomplete: Remove unused local variable prev
Browse files Browse the repository at this point in the history
  • Loading branch information
Jille committed Oct 28, 2015
1 parent f445c89 commit 3463964
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions autocomplete/bash_autocomplete
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
: ${PROG:=$(basename ${BASH_SOURCE})}

_cli_bash_autocomplete() {
local cur prev opts base
local cur opts base
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts=$( ${COMP_WORDS[@]:0:$COMP_CWORD} --generate-bash-completion )
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
}

complete -F _cli_bash_autocomplete $PROG
complete -F _cli_bash_autocomplete $PROG

0 comments on commit 3463964

Please sign in to comment.