summaryrefslogtreecommitdiff
path: root/Completion/Core
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Core')
-rw-r--r--Completion/Core/_all_labels9
-rw-r--r--Completion/Core/_requested2
2 files changed, 8 insertions, 3 deletions
diff --git a/Completion/Core/_all_labels b/Completion/Core/_all_labels
index a03112ee4..72d9d0317 100644
--- a/Completion/Core/_all_labels
+++ b/Completion/Core/_all_labels
@@ -1,6 +1,11 @@
#autoload
-local gopt=-J len tmp pre suf ret=1 descr spec
+local gopt=-J len tmp pre suf ret=1 descr spec prev
+
+if [[ "$1" = - ]]; then
+ prev=-
+ shift
+fi
if [[ "$1" = -([12]|)[VJ] ]]; then
gopt="$1"
@@ -20,7 +25,7 @@ else
suf=5
fi
-while comptags -A "$1" curtag spec; do
+while comptags "-A$prev" "$1" curtag spec; do
_comp_tags="$_comp_tags $spec "
if [[ "$curtag" = *:* ]]; then
zformat -f descr "${curtag#*:}" "d:$3"
diff --git a/Completion/Core/_requested b/Completion/Core/_requested
index 90fdec279..01dee8f11 100644
--- a/Completion/Core/_requested
+++ b/Completion/Core/_requested
@@ -9,7 +9,7 @@ fi
if comptags -R "$1"; then
if [[ $# -gt 3 ]]; then
- _all_labels "$gopt" "$@"
+ _all_labels - "$gopt" "$@"
elif [[ $# -gt 1 ]]; then
_description "$gopt" "$@"
fi