Skip to content
Snippets Groups Projects
Commit b33cad4a authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

bash completion: Group commands by arguments and options


This grouping, which was a TODO for a long time, reduces the script size
by about 5kB.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 49283373
No related branches found
No related tags found
No related merge requests found
......@@ -553,20 +553,23 @@ def WriteCompletion(sw, scriptname, funcname,
sw.DecIndent()
sw.Write("fi")
# We're doing options and arguments to commands
sw.Write("""case "${COMP_WORDS[1]}" in""")
# Group commands by arguments and options
grouped_cmds = {}
for cmd, (_, argdef, optdef, _, _) in commands.iteritems():
if not (argdef or optdef):
continue
grouped_cmds.setdefault((tuple(argdef), tuple(optdef)), set()).add(cmd)
# TODO: Group by arguments and options
sw.Write("%s)", utils.ShellQuote(cmd))
# We're doing options and arguments to commands
sw.Write("""case "${COMP_WORDS[1]}" in""")
for ((argdef, optdef), cmds) in grouped_cmds.items():
assert argdef or optdef
sw.Write("%s)", "|".join(map(utils.ShellQuote, sorted(cmds))))
sw.IncIndent()
try:
CompletionWriter(1, optdef, argdef).WriteTo(sw)
finally:
sw.DecIndent()
sw.Write(";;")
sw.Write("esac")
finally:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment