From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/eselect:master commit in: /, misc/
Date: Thu, 5 Jun 2014 11:22:42 +0000 (UTC) [thread overview]
Message-ID: <1401967291.5df2ce07583dc623dd6b6caec17d9e73bfb47e1d.ulm@gentoo> (raw)
commit: 5df2ce07583dc623dd6b6caec17d9e73bfb47e1d
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 5 11:21:31 2014 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Jun 5 11:21:31 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=5df2ce07
eselect.bashcomp: Improve handling of options followed by an equals sign.
* misc/eselect.bashcomp (_eselect): Improve handling of options
that are followed by an equals sign.
---
ChangeLog | 3 +++
misc/eselect.bashcomp | 7 +++++--
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index c3f0061..1f01c16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2014-06-05 Ulrich Müller <ulm@gentoo.org>
+ * misc/eselect.bashcomp (_eselect): Improve handling of options
+ that are followed by an equals sign.
+
* bin/eselect.in: Parse global options even if we are invoked
as something-config or similar. Respect "--" to indicate end
of options.
diff --git a/misc/eselect.bashcomp b/misc/eselect.bashcomp
index da3e55b..bd5afe3 100644
--- a/misc/eselect.bashcomp
+++ b/misc/eselect.bashcomp
@@ -8,7 +8,7 @@
_eselect() {
local cur sedcmd2 sedcmd3 possibles
- local options="--brief --color --colour"
+ local options="--brief --color= --colour="
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
sedcmd2='s/^ \([[:alnum:]-][[:alnum:]_-]*\)[[:space:],].*$/\1/p'
@@ -17,6 +17,7 @@ _eselect() {
set -- "${COMP_WORDS[@]:1}"
# skip global options
while [[ $# -gt 1 && $1 == -* ]]; do
+ [[ $2 == "=" ]] && shift 2
shift
done
# skip any subaction options
@@ -38,8 +39,10 @@ _eselect() {
;;
esac
- [[ -n "${possibles}" ]] && \
+ if [[ -n "${possibles}" ]]; then
COMPREPLY=( $(compgen -W "${possibles}" -- ${cur}) )
+ [[ ${COMPREPLY[0]} == *= ]] && compopt -o nospace
+ fi
return 0
}
next reply other threads:[~2014-06-05 11:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-05 11:22 Ulrich Müller [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-22 14:14 [gentoo-commits] proj/eselect:master commit in: /, misc/ Ulrich Müller
2024-11-13 20:26 Ulrich Müller
2023-06-12 16:24 Ulrich Müller
2023-02-27 17:40 Ulrich Müller
2022-05-01 17:35 Ulrich Müller
2022-05-01 17:35 Ulrich Müller
2013-11-15 8:01 [gentoo-commits] proj/eselect:nolinewrap " Ulrich Müller
2013-11-15 6:21 ` [gentoo-commits] proj/eselect:master " Ulrich Müller
2013-09-18 7:10 Ulrich Mueller
2013-07-05 13:37 Ulrich Mueller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1401967291.5df2ce07583dc623dd6b6caec17d9e73bfb47e1d.ulm@gentoo \
--to=ulm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox