pdftotext: New completion

master
Ville Skyttä 2015-07-07 17:50:36 +03:00
parent ffd9038923
commit 4289460691
4 changed files with 56 additions and 0 deletions

View File

@ -256,6 +256,7 @@ bashcomp_DATA = 2to3 \
pack200 \
passwd \
patch \
pdftotext \
perl \
pgrep \
pidof \

36
completions/pdftotext Normal file
View File

@ -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

View File

@ -0,0 +1 @@
assert_source_completions pdftotext

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "pdftotext "
sync_after_int
teardown