lz4: New completion.

master
Ville Skyttä 2014-01-06 00:41:23 +02:00
parent 34a74df619
commit a2e2f198d8
5 changed files with 78 additions and 0 deletions

View File

@ -89,6 +89,7 @@ lvrename
lvresize
lvs
lvscan
lz4c
mailsnarf
mdecrypt
mencoder

View File

@ -486,6 +486,7 @@ CLEANFILES = \
lvresize \
lvs \
lvscan \
lz4c \
mailsnarf \
mdecrypt \
mencoder \
@ -741,6 +742,10 @@ symlinks: $(targetdir) $(DATA)
rm -f $(targetdir)/$$file && \
$(LN_S) lvm $(targetdir)/$$file ; \
done
for file in lz4c ; do \
rm -f $(targetdir)/$$file && \
$(LN_S) lz4 $(targetdir)/$$file ; \
done
for file in clzip pdlzip plzip ; do \
rm -f $(targetdir)/$$file && \
$(LN_S) lzip $(targetdir)/$$file ; \

53
completions/lz4 Normal file
View File

@ -0,0 +1,53 @@
# lz4 completion -*- shell-script -*-
_lz4()
{
local cur prev words cword
_init_completion || return
case $prev in
-b)
_filedir
return
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W \
'$( _parse_help "$1" -h | sed -e "/#/d" ) -B{4..7} -i{1..9}' \
-- "$cur" ) )
return
fi
local args word xspec="*.?(t)lz4"
_count_args
[[ $args -gt 2 ]] && return
for word in ${words[@]}; do
case $word in
-*[dt]*)
case $args in
1) xspec="!"$xspec ;;
2) [[ $word == *t* ]] && return
esac
break
;;
-z)
case $args in
1) xspec= ;;
2) xspec="!"$xspec ;;
esac
break
;;
esac
done
_expand || return 0
local IFS=$'\n'
compopt -o filenames
COMPREPLY=( $( compgen -f -X "$xspec" -- "$cur" ) \
$( compgen -d -- "$cur" ) )
} &&
complete -F _lz4 lz4 lz4c
# ex: ts=4 sw=4 et filetype=sh

1
test/completion/lz4.exp Normal file
View File

@ -0,0 +1 @@
assert_source_completions lz4

View File

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