135
138
names = set(builtin_command_names()) # to eliminate duplicates
136
139
names.update(plugin_command_names())
137
140
commands = ((n, get_cmd_object(n)) for n in names)
139
142
max_name = max(len(n) for n, o in shown_commands)
140
143
indent = ' ' * (max_name + 1)
141
144
width = osutils.terminal_width() - 1