We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b10f78c commit bc5dfffCopy full SHA for bc5dfff
completions-fallback/Makefile.am
@@ -58,6 +58,7 @@ cross_platform = adb.bash \
58
svn.bash \
59
svnadmin.bash \
60
svnlook.bash \
61
+ syncthing.bash \
62
task.bash \
63
tokio-console.bash \
64
udevadm.bash \
completions-fallback/syncthing.bash
@@ -0,0 +1,9 @@
1
+# 3rd party completion loader for commands emitting -*- shell-script -*-
2
+# their completion using "$cmd install-completions". For example,
3
+# some Go programs using https://github.com/WillAbides/kongplete do.
4
+#
5
+# This serves as a fallback in case the completion is not installed otherwise.
6
+
7
+eval -- "$("$1" install-completions 2>/dev/null)"
8
9
+# ex: filetype=sh
0 commit comments