mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-29 13:04:58 +00:00
e7c91f1967
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34008 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
889 B
Bash
41 lines
889 B
Bash
# lyx(1) completion
|
|
# Modified inkscape template of allali@univ-mlv.fr
|
|
# by cengique@users.sf.net
|
|
|
|
have lyx &&
|
|
_lyx()
|
|
{
|
|
local cur g last
|
|
|
|
COMPREPLY=()
|
|
cur=${COMP_WORDS[COMP_CWORD]}
|
|
|
|
if [[ $COMP_CWORD > 1 ]]; then
|
|
last=${COMP_WORDS[$(($COMP_CWORD - 1))]}
|
|
else
|
|
last=''
|
|
fi
|
|
|
|
# turn on extglob
|
|
shopt -q extglob && g=1
|
|
test $g -eq 0 && shopt -s extglob
|
|
|
|
if [[ $last == +(--export|-e) ]]; then #'+(--export|-e)'
|
|
_filedir '+(pdf[1234]|PDF[1234]|pdf|PDF|ps|PS|xhtml|XHTML)'
|
|
else
|
|
case "$cur" in
|
|
-*)
|
|
COMPREPLY=( $( compgen -W '-help -userdir -sysdir \
|
|
-geometry -dbg -x --execute -e --export \
|
|
-i --import -version -batch' -- $cur ) ) ;;
|
|
*)
|
|
_filedir '@(lyx)'
|
|
esac
|
|
fi
|
|
|
|
# turn it off if necessary
|
|
test $g -eq 0 && shopt -u extglob
|
|
|
|
}
|
|
[ "${have:-}" ] && complete -F _lyxz $filenames lyx
|