/hg/icedtea-web: icedteaweb-completion.in: improved to suggest a...
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Wed Jan 11 15:00:25 UTC 2017
changeset 6ebf1298c566 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=6ebf1298c566
author: Jiri Vanek <jvanek at redhat.com>
date: Wed Jan 11 16:07:04 2017 +0100
icedteaweb-completion.in: improved to suggest also files in relevant cases
diffstat:
ChangeLog | 4 ++++
icedteaweb-completion.in | 23 +++++++++++++++++++++--
2 files changed, 25 insertions(+), 2 deletions(-)
diffs (43 lines):
diff -r f5dedb2c83b6 -r 6ebf1298c566 ChangeLog
--- a/ChangeLog Wed Jan 04 16:23:45 2017 +0100
+++ b/ChangeLog Wed Jan 11 16:07:04 2017 +0100
@@ -1,3 +1,7 @@
+2017-01-11 Jiri Vanek <jvanek at redhat.com>
+
+ * icedteaweb-completion.in: improved to suggest also files in relevant cases
+
2017-01-04 Jiri Vanek <jvanek at redhat.com>
Fixed bash completion generation
diff -r f5dedb2c83b6 -r 6ebf1298c566 icedteaweb-completion.in
--- a/icedteaweb-completion.in Wed Jan 04 16:23:45 2017 +0100
+++ b/icedteaweb-completion.in Wed Jan 11 16:07:04 2017 +0100
@@ -37,7 +37,26 @@
# JavaWs Options
opts="@JAVAWS@"
- COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
- return 0
+ if [[ $prev == *"-jnlp" || $prev == *"-html" ]] ; then
+ COMPREPLY=($(compgen -f -X "!*" -- ${cur}))
+ if [ -d "$COMPREPLY" ] ; then
+ COMPREPLY="$COMPREPLY/"
+ fi
+ return 0
+ fi
+ if [[ $cur == "" ]] ; then
+ COMPREPLY=($(compgen -W "aa_file_or_url ${opts} zz_file_or_url" -- ${cur}))
+ return 0
+ fi
+ if [[ $cur == "-"* ]] ; then
+ COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
+ return 0
+ else
+ COMPREPLY=($(compgen -f -X "!*" -- ${cur}))
+ if [ -d "$COMPREPLY" ] ; then
+ COMPREPLY="$COMPREPLY/"
+ fi
+ return 0
+ fi
}
complete -F _javaws javaws
More information about the distro-pkg-dev
mailing list