mirror of
https://github.com/servo/servo.git
synced 2025-06-09 09:03:23 +00:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
29
python/mach/bash-completion.sh
Normal file
29
python/mach/bash-completion.sh
Normal file
|
@ -0,0 +1,29 @@
|
|||
function _mach()
|
||||
{
|
||||
local cur cmds c subcommand
|
||||
COMPREPLY=()
|
||||
|
||||
# Load the list of commands
|
||||
cmds=`"${COMP_WORDS[0]}" mach-commands`
|
||||
|
||||
# Look for the subcommand.
|
||||
cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
subcommand=""
|
||||
c=1
|
||||
while [ $c -lt $COMP_CWORD ]; do
|
||||
word="${COMP_WORDS[c]}"
|
||||
for cmd in $cmds; do
|
||||
if [ "$cmd" = "$word" ]; then
|
||||
subcommand="$word"
|
||||
fi
|
||||
done
|
||||
c=$((++c))
|
||||
done
|
||||
|
||||
if [[ "$subcommand" == "help" || -z "$subcommand" ]]; then
|
||||
COMPREPLY=( $(compgen -W "$cmds" -- ${cur}) )
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
complete -o default -F _mach mach
|
Loading…
Add table
Add a link
Reference in a new issue