def allcommands(self, ctx):
'''All the commands'''
# TODO: Fix/Deprecate?, all_commands alias
formatter = commands.HelpFormatter(show_check_failure = True, show_hidden = True)
formatter.format_help_for(ctx, self.bot)
_commands = formatter.filter_command_list()
_allcommands = ""
for name, _command in _commands:
_allcommands += name + ' '
await self.bot.whisper(_allcommands[:-1])