[rfc][icedtea-web] add files bash completion to our script
Jiri Vanek
jvanek at redhat.com
Thu Jan 5 09:27:35 UTC 2017
On 01/04/2017 05:03 PM, Jiri Vanek wrote:
>
> I realized that if our bash compeltion is isntalled, it is sucesfully blocking nay file compeltion,
> which is quite bad. As some compromise, there is my solution on this
> As I'm completly new to it, Ihope somebody will ave better ideas....
>
>
> As reminder, also fully generated completion file is attached
> Tahnx!
> J.
Maybe a bit better one?
diff -r f5dedb2c83b6 icedteaweb-completion.in
--- a/icedteaweb-completion.in Wed Jan 04 16:23:45 2017 +0100
+++ b/icedteaweb-completion.in Thu Jan 05 10:26:14 2017 +0100
@@ -36,8 +36,13 @@
prev="${COMP_WORDS[COMP_CWORD-1]}"
# JavaWs Options
- opts="@JAVAWS@"
- COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
- return 0
+ if [[ $prev == *"-jnlp" || $prev == *"-html" ]] ; then
+ COMPREPLY=($(compgen -f -X "!*" -- ${cur}))
+ return 0
+ else
+ opts="@JAVAWS@"
+ COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
+ return 0
+ fi
}
complete -F _javaws javaws
Still do not comply directories with single subdir correctly...
J.
More information about the distro-pkg-dev
mailing list