diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:58 +0000 |
commit | d460debc6f2747699a54b7ea0e25f4ec69bf1b3d (patch) | |
tree | ca88441f05ddeb5857757e4fbba5f266119e0439 /completions/_rg | |
parent | Adding upstream version 1:2.12.0. (diff) | |
download | bash-completion-d460debc6f2747699a54b7ea0e25f4ec69bf1b3d.tar.xz bash-completion-d460debc6f2747699a54b7ea0e25f4ec69bf1b3d.zip |
Adding upstream version 1:2.13.0.upstream/1%2.13.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | completions/_rg | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/completions/_rg b/completions/_rg new file mode 100644 index 0000000..4129371 --- /dev/null +++ b/completions/_rg @@ -0,0 +1,8 @@ +# 3rd party completion loader for commands emitting -*- shell-script -*- +# their completion using "$cmd --generate complete-bash". +# +# This serves as a fallback in case the completion is not installed otherwise. + +eval -- "$("$1" --generate complete-bash 2>/dev/null)" + +# ex: filetype=sh |