ShellTable table = new ShellTable().noHeaders().separator(" ").size(termWidth);
table.column(new Col("Command").maxSize(35));
table.column(new Col("Description"));
for (Map.Entry<String,String> entry : commands.entrySet()) {
String key = NameScoping.getCommandNameWithoutGlobalPrefix(session, entry.getKey());
table.addRow().addContent(key, entry.getValue());
}
table.print(out);
}
protected Function unProxy(Function function) {