We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a89cde2 commit 7e4cc2fCopy full SHA for 7e4cc2f
completions/Makefile.am
@@ -377,6 +377,7 @@ bashcomp_DATA = 2to3 \
377
_reptyr \
378
resolvconf \
379
_rfkill \
380
+ _rg \
381
ri \
382
rmlist \
383
rmmod \
completions/_rg
@@ -0,0 +1,8 @@
1
+# 3rd party completion loader for commands emitting -*- shell-script -*-
2
+# their completion using "$cmd --generate complete-bash".
3
+#
4
+# This serves as a fallback in case the completion is not installed otherwise.
5
+
6
+eval -- "$("$1" --generate complete-bash 2>/dev/null)"
7
8
+# ex: filetype=sh
test/fallback/completions/rg
@@ -0,0 +1 @@
+../../../completions/_rg
0 commit comments