We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f2798 commit f0c3b59Copy full SHA for f0c3b59
completions/Makefile.am
@@ -16,6 +16,7 @@ cross_platform = 2to3 \
16
apt-mark \
17
aptitude \
18
arch \
19
+ _argc \
20
arp \
21
arping \
22
arpspoof \
completions/_argc
@@ -0,0 +1,8 @@
1
+# 3rd party completion loader for commands emitting -*- shell-script -*-
2
+# their completion using "$cmd --argc-completions bash".
3
+#
4
+# This serves as a fallback in case the completion is not installed otherwise.
5
+
6
+eval -- "$("$1" --argc-completions bash 2>/dev/null)"
7
8
+# ex: filetype=sh
test/fallback/completions/Makefile.am
@@ -1,4 +1,5 @@
EXTRA_DIST = \
+ argc \
adb \
cal \
cargo \
test/fallback/completions/argc
@@ -0,0 +1 @@
+../../../completions/_argc
0 commit comments