lyx_mirror/lib/scripts/bash_completion

23 lines
509 B
Bash
Raw Normal View History

# lyx(1) completion
# Modified inkscape template of allali@univ-mlv.fr
# by cengique@users.sf.net
have lyx &&
_lyx()
{
local cur
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-help -userdir -sysdir \
-geometry -dbg -x --execute -e --export \
-i --import -version -batch' -- $cur ) )
else
_filedir '@(lyx)'
fi
}
[ "${have:-}" ] && complete -F _lyx $filenames lyx