2011-11-01 22:14:45 +02:00
|
|
|
# xrdb(1) completion -*- shell-script -*-
|
2010-09-14 21:00:31 +03:00
|
|
|
|
|
|
|
_xrdb()
|
|
|
|
{
|
2011-04-21 11:04:51 +03:00
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
2010-09-14 21:00:31 +03:00
|
|
|
|
|
|
|
case $prev in
|
|
|
|
-backup|-display|-help)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-cpp|-edit)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ "$cur" == -* ]]; then
|
2011-04-28 21:21:31 +03:00
|
|
|
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
|
2010-09-14 21:00:31 +03:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
_filedir
|
|
|
|
} &&
|
2010-11-01 19:26:53 +02:00
|
|
|
complete -F _xrdb xrdb
|
2010-09-14 21:00:31 +03:00
|
|
|
|
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|