mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 799680 - Add a bash completion script for mach [r=gps]
DONTBUILD (not part of the build)
This commit is contained in:
parent
256d6a4bf4
commit
1f808bd8c9
30
python/mach/bash-completion.sh
Normal file
30
python/mach/bash-completion.sh
Normal file
@ -0,0 +1,30 @@
|
||||
function _mach()
|
||||
{
|
||||
local cur cmds c subcommand mach
|
||||
COMPREPLY=()
|
||||
|
||||
# Load the list of commands
|
||||
mach=`which mach || echo ./mach`
|
||||
cmds=`$mach 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
|
@ -15,9 +15,14 @@ class BuiltinCommands(object):
|
||||
def __init__(self, context):
|
||||
self.context = context
|
||||
|
||||
@Command('mach-commands', category='misc',
|
||||
description='List all mach commands.')
|
||||
def commands(self):
|
||||
print("\n".join(self.context.commands.command_handlers.keys()))
|
||||
|
||||
@Command('mach-debug-commands', category='misc',
|
||||
description='Show info about available mach commands.')
|
||||
def commands(self):
|
||||
def debug_commands(self):
|
||||
import inspect
|
||||
|
||||
handlers = self.context.commands.command_handlers
|
||||
|
Loading…
Reference in New Issue
Block a user