Skip to content

Commit

Permalink
pdftotext: New completion
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Jul 7, 2015
1 parent ffd9038 commit 4289460
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
1 change: 1 addition & 0 deletions completions/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ bashcomp_DATA = 2to3 \
pack200 \
passwd \
patch \
pdftotext \
perl \
pgrep \
pidof \
Expand Down
36 changes: 36 additions & 0 deletions completions/pdftotext
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# bash completion for pdftotext(1) -*- shell-script -*-

_pdftotext()
{
local cur prev words cword
_init_completion || return

case $prev in
-h|-help|--help|-'?'|-f|-l|-r|-x|-y|-W|-H|-fixed|-opw|-upw)
return
;;
-enc)
COMPREPLY=( $( compgen -W '$( "$1" -listenc 2>/dev/null |
sed -e 1d )' -- "$cur" ) )
return
;;
-eol)
COMPREPLY=( $( compgen -W "unix dos mac" -- "$cur" ) )
return
;;
esac

if [[ $cur == -* && ${prev,,} != *.pdf ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
return
fi

case ${prev,,} in
-|*.txt) ;;
*.pdf) COMPREPLY=( $( compgen -W '-' -- "$cur" ) ) ; _filedir txt ;;
*) _filedir pdf ;;
esac
} &&
complete -F _pdftotext pdftotext

# ex: ts=4 sw=4 et filetype=sh
1 change: 1 addition & 0 deletions test/completion/pdftotext.exp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
assert_source_completions pdftotext
18 changes: 18 additions & 0 deletions test/lib/completions/pdftotext.exp
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
proc setup {} {
save_env
}


proc teardown {} {
assert_env_unmodified
}


setup


assert_complete_any "pdftotext "
sync_after_int


teardown

0 comments on commit 4289460

Please sign in to comment.