-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bash-completion (2.14.0-1 -> 2.15.0-1) Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
- Loading branch information
Git for Windows Build Agent
committed
Dec 11, 2024
1 parent
e1506c2
commit 0fb6488
Showing
115 changed files
with
1,275 additions
and
700 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
usr/share/bash-completion/completions/insmod → ...share/bash-completion/completions/_insmod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...bash-completion/completions/insmod.static → ...ash-completion/completions/_insmod.static
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 3rd party completion loader for commands using -*- shell-script -*- | ||
# version 1 of the https://cli.urfave.org library. | ||
# | ||
# This serves as a fallback in case the completion is not installed otherwise. | ||
|
||
# https://github.com/urfave/cli/blob/v1-maint/docs/v1/manual.md#bash-completion | ||
# https://github.com/urfave/cli/blob/v1-maint/autocomplete/bash_autocomplete | ||
_comp_cmd__urfave_cli_v1() | ||
{ | ||
local cur prev words cword comp_args | ||
_comp_initialize -- "$@" || return | ||
|
||
local compcmd=("${words[@]:0:cword}") | ||
if [[ $cur == -* ]]; then | ||
compcmd+=("$cur") | ||
fi | ||
compcmd+=(--generate-bash-completion) | ||
|
||
_comp_compgen_split -- "$("${compcmd[@]}" 2>/dev/null)" | ||
} && | ||
complete -o bashdefault -o default -o nospace \ | ||
-F _comp_cmd__urfave_cli_v1 "$1" | ||
|
||
# ex: filetype=sh |
3 changes: 3 additions & 0 deletions
3
...share/bash-completion/completions/modinfo → ...hare/bash-completion/completions/_modinfo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...hare/bash-completion/completions/modprobe → ...are/bash-completion/completions/_modprobe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# mtr(8) completion -*- shell-script -*- | ||
|
||
# Use of this file is deprecated. | ||
# Upstream completion is available in mtr >= 0.88, use that instead. | ||
|
||
complete -F _comp_complete_known_hosts mtr | ||
|
||
# ex: filetype=sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 3rd party completion loader for commands emitting -*- shell-script -*- | ||
# their completion using "$cmd completion bash". | ||
# For example, many Go programs using https://github.com/spf13/cobra do. | ||
# | ||
# This serves as a fallback in case the completion is not installed otherwise. | ||
|
||
eval -- "$("$1" completion bash 2>/dev/null)" | ||
|
||
# ex: filetype=sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 3rd party completion loader for commands emitting -*- shell-script -*- | ||
# their completion using "$cmd completion". | ||
# | ||
# This serves as a fallback in case the completion is not installed otherwise. | ||
|
||
eval -- "$("$1" completion 2>/dev/null)" | ||
|
||
# ex: filetype=sh |
3 changes: 3 additions & 0 deletions
3
usr/share/bash-completion/completions/rmmod → usr/share/bash-completion/completions/_rmmod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 3rd party completion loader for commands using -*- shell-script -*- | ||
# version 1 of the https://cli.urfave.org library. | ||
# | ||
# This serves as a fallback in case the completion is not installed otherwise. | ||
|
||
# https://github.com/urfave/cli/blob/v1-maint/docs/v1/manual.md#bash-completion | ||
# https://github.com/urfave/cli/blob/v1-maint/autocomplete/bash_autocomplete | ||
_comp_cmd__urfave_cli_v1() | ||
{ | ||
local cur prev words cword comp_args | ||
_comp_initialize -- "$@" || return | ||
|
||
local compcmd=("${words[@]:0:cword}") | ||
if [[ $cur == -* ]]; then | ||
compcmd+=("$cur") | ||
fi | ||
compcmd+=(--generate-bash-completion) | ||
|
||
_comp_compgen_split -- "$("${compcmd[@]}" 2>/dev/null)" | ||
} && | ||
complete -o bashdefault -o default -o nospace \ | ||
-F _comp_cmd__urfave_cli_v1 "$1" | ||
|
||
# ex: filetype=sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 3rd party completion loader for commands using -*- shell-script -*- | ||
# version 1 of the https://cli.urfave.org library. | ||
# | ||
# This serves as a fallback in case the completion is not installed otherwise. | ||
|
||
# https://github.com/urfave/cli/blob/v1-maint/docs/v1/manual.md#bash-completion | ||
# https://github.com/urfave/cli/blob/v1-maint/autocomplete/bash_autocomplete | ||
_comp_cmd__urfave_cli_v1() | ||
{ | ||
local cur prev words cword comp_args | ||
_comp_initialize -- "$@" || return | ||
|
||
local compcmd=("${words[@]:0:cword}") | ||
if [[ $cur == -* ]]; then | ||
compcmd+=("$cur") | ||
fi | ||
compcmd+=(--generate-bash-completion) | ||
|
||
_comp_compgen_split -- "$("${compcmd[@]}" 2>/dev/null)" | ||
} && | ||
complete -o bashdefault -o default -o nospace \ | ||
-F _comp_cmd__urfave_cli_v1 "$1" | ||
|
||
# ex: filetype=sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 3rd party completion loader for commands emitting -*- shell-script -*- | ||
# their completion using "$cmd generate-shell-completion bash". | ||
# | ||
# This serves as a fallback in case the completion is not installed otherwise. | ||
|
||
eval -- "$("$1" generate-shell-completion bash 2>/dev/null)" | ||
|
||
# ex: filetype=sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 3rd party completion loader for commands emitting -*- shell-script -*- | ||
# their completion using "$cmd --generate-shell-completion bash". | ||
# | ||
# This serves as a fallback in case the completion is not installed otherwise. | ||
|
||
eval -- "$("$1" --generate-shell-completion bash 2>/dev/null)" | ||
|
||
# ex: filetype=sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.