File tree Expand file tree Collapse file tree 9 files changed +45
-0
lines changed
test/fallback/completions Expand file tree Collapse file tree 9 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 47
47
/createuser
48
48
/_datree
49
49
/dcop
50
+ /_deno
50
51
/dfutool
52
+ /_diesel
51
53
/display
52
54
/_docker
53
55
/dpkg-deb
274
276
/spovray
275
277
/_sshi
276
278
/star
279
+ /_starship
277
280
/stream
278
281
/sudoedit
279
282
/_tanzu
306
309
/vgsplit
307
310
/vigr
308
311
/_virtctl
312
+ /_watchexec
309
313
/whatis
310
314
/wine-development
311
315
/wine-stable
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ bashcomp_DATA = 2to3 \
118
118
fio \
119
119
firefox \
120
120
flake8 \
121
+ _flamegraph \
121
122
freebsd-update \
122
123
freeciv \
123
124
freeciv-server \
@@ -253,6 +254,7 @@ bashcomp_DATA = 2to3 \
253
254
mc \
254
255
mcrypt \
255
256
mdadm \
257
+ _mdbook \
256
258
mdtool \
257
259
medusa \
258
260
mii-diag \
@@ -426,6 +428,7 @@ bashcomp_DATA = 2to3 \
426
428
tcpnice \
427
429
timeout \
428
430
tipc \
431
+ _tokio-console \
429
432
tox \
430
433
tracepath \
431
434
tree \
@@ -554,7 +557,9 @@ CLEANFILES = \
554
557
createuser \
555
558
_datree \
556
559
dcop \
560
+ _deno \
557
561
dfutool \
562
+ _diesel \
558
563
display \
559
564
_docker \
560
565
dpkg-deb \
@@ -827,6 +832,7 @@ CLEANFILES = \
827
832
spovray \
828
833
_sshi \
829
834
star \
835
+ _starship \
830
836
stream \
831
837
sudoedit \
832
838
_tanzu \
@@ -859,6 +865,7 @@ CLEANFILES = \
859
865
vgsplit \
860
866
vigr \
861
867
_virtctl \
868
+ _watchexec \
862
869
whatis \
863
870
wine-development \
864
871
wine-stable \
@@ -925,6 +932,8 @@ symlinks: $(DATA)
925
932
mailsnarf msgsnarf
926
933
$(ss ) firefox \
927
934
firefox-esr iceweasel mozilla-firefox
935
+ $(ss ) _flamegraph \
936
+ _watchexec
928
937
$(ss ) freeciv \
929
938
civclient freeciv-gtk2 freeciv-gtk3 freeciv-sdl freeciv-xaw
930
939
$(ss ) freeciv-server \
@@ -1052,6 +1061,8 @@ symlinks: $(DATA)
1052
1061
apropos whatis
1053
1062
$(ss ) mcrypt \
1054
1063
mdecrypt
1064
+ $(ss ) _mdbook \
1065
+ _deno _diesel _starship
1055
1066
$(ss ) mplayer \
1056
1067
gmplayer kplayer mencoder mplayer2
1057
1068
$(ss ) mutt \
Original file line number Diff line number Diff line change
1
+ # 3rd party completion loader for commands emitting -*- shell-script -*-
2
+ # their completion using "$cmd --completions bash".
3
+ #
4
+ # This serves as a fallback in case the completion is not installed otherwise.
5
+
6
+ eval -- " $( " $1 " --completions bash 2> /dev/null) "
7
+
8
+ # ex: filetype=sh
Original file line number Diff line number Diff line change
1
+ # 3rd party completion loader for commands emitting -*- shell-script -*-
2
+ # their completion using "$cmd completions bash".
3
+ #
4
+ # This serves as a fallback in case the completion is not installed otherwise.
5
+
6
+ eval -- " $( " $1 " completions bash 2> /dev/null) "
7
+
8
+ # ex: filetype=sh
Original file line number Diff line number Diff line change
1
+ # 3rd party completion loader for commands emitting -*- shell-script -*-
2
+ # their completion using "$cmd gen-completion bash".
3
+ #
4
+ # This serves as a fallback in case the completion is not installed otherwise.
5
+
6
+ eval -- " $( " $1 " gen-completion bash 2> /dev/null) "
7
+
8
+ # ex: filetype=sh
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ EXTRA_DIST = \
6
6
chsh \
7
7
dmesg \
8
8
eject \
9
+ flamegraph \
9
10
gaiacli \
10
11
gh \
11
12
golangci-lint \
@@ -14,6 +15,7 @@ EXTRA_DIST = \
14
15
hwclock \
15
16
ionice \
16
17
look \
18
+ mdbook \
17
19
mock \
18
20
modules \
19
21
mount \
@@ -34,6 +36,7 @@ EXTRA_DIST = \
34
36
svn \
35
37
svnadmin \
36
38
svnlook \
39
+ tokio-console \
37
40
udevadm \
38
41
umount \
39
42
umount.linux \
Original file line number Diff line number Diff line change
1
+ ../../../completions/_flamegraph
Original file line number Diff line number Diff line change
1
+ ../../../completions/_mdbook
Original file line number Diff line number Diff line change
1
+ ../../../completions/_tokio-console
You can’t perform that action at this time.
0 commit comments