Fix bug #4753, thanks Cengiz Gunay.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34001 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2010-04-01 09:40:33 +00:00
parent 879ed8e2ed
commit f151e820ce
2 changed files with 23 additions and 0 deletions

View File

@ -1181,6 +1181,7 @@ scriptsdir = $(pkgdatadir)/scripts
# Note that we "chmod 755" manually these files in install-data-hook. # Note that we "chmod 755" manually these files in install-data-hook.
dist_scripts_PYTHON = \ dist_scripts_PYTHON = \
scripts/TeXFiles.py \ scripts/TeXFiles.py \
scripts/bash_completion \
scripts/clean_dvi.py \ scripts/clean_dvi.py \
scripts/csv2lyx.py \ scripts/csv2lyx.py \
scripts/convertDefault.py \ scripts/convertDefault.py \

View File

@ -0,0 +1,22 @@
# 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' -- $cur ) )
else
_filedir '@(lyx)'
fi
}
[ "${have:-}" ] && complete -F _lyx $filenames lyx