lz4: New completion.
This commit is contained in:
parent
34a74df619
commit
a2e2f198d8
1
completions/.gitignore
vendored
1
completions/.gitignore
vendored
@ -89,6 +89,7 @@ lvrename
|
|||||||
lvresize
|
lvresize
|
||||||
lvs
|
lvs
|
||||||
lvscan
|
lvscan
|
||||||
|
lz4c
|
||||||
mailsnarf
|
mailsnarf
|
||||||
mdecrypt
|
mdecrypt
|
||||||
mencoder
|
mencoder
|
||||||
|
@ -486,6 +486,7 @@ CLEANFILES = \
|
|||||||
lvresize \
|
lvresize \
|
||||||
lvs \
|
lvs \
|
||||||
lvscan \
|
lvscan \
|
||||||
|
lz4c \
|
||||||
mailsnarf \
|
mailsnarf \
|
||||||
mdecrypt \
|
mdecrypt \
|
||||||
mencoder \
|
mencoder \
|
||||||
@ -741,6 +742,10 @@ symlinks: $(targetdir) $(DATA)
|
|||||||
rm -f $(targetdir)/$$file && \
|
rm -f $(targetdir)/$$file && \
|
||||||
$(LN_S) lvm $(targetdir)/$$file ; \
|
$(LN_S) lvm $(targetdir)/$$file ; \
|
||||||
done
|
done
|
||||||
|
for file in lz4c ; do \
|
||||||
|
rm -f $(targetdir)/$$file && \
|
||||||
|
$(LN_S) lz4 $(targetdir)/$$file ; \
|
||||||
|
done
|
||||||
for file in clzip pdlzip plzip ; do \
|
for file in clzip pdlzip plzip ; do \
|
||||||
rm -f $(targetdir)/$$file && \
|
rm -f $(targetdir)/$$file && \
|
||||||
$(LN_S) lzip $(targetdir)/$$file ; \
|
$(LN_S) lzip $(targetdir)/$$file ; \
|
||||||
|
53
completions/lz4
Normal file
53
completions/lz4
Normal 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
1
test/completion/lz4.exp
Normal file
@ -0,0 +1 @@
|
|||||||
|
assert_source_completions lz4
|
18
test/lib/completions/lz4.exp
Normal file
18
test/lib/completions/lz4.exp
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
proc setup {} {
|
||||||
|
save_env
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
proc teardown {} {
|
||||||
|
assert_env_unmodified
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
setup
|
||||||
|
|
||||||
|
|
||||||
|
assert_complete_any "lz4 "
|
||||||
|
sync_after_int
|
||||||
|
|
||||||
|
|
||||||
|
teardown
|
Loading…
x
Reference in New Issue
Block a user