aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/core/help.py (follow)
Commit message (Collapse)AuthorAgeLines
* Use paginator from botcore (#1444)Gravatar Amrou Bellalouna2024-03-11-10/+7
|
* Always use the get_logger func from bot-coreGravatar Chris Lovering2023-11-25-2/+2
|
* Apply fixes for ruff lintingGravatar Chris Lovering2023-05-09-14/+13
| | | | | Co-authored-by: wookie184 <[email protected]> Co-authored-by: Amrou Bellalouna <[email protected]>
* Simplify command params returnGravatar miki555551152023-05-08-3/+1
|
* Fix extra space in .help command signatureGravatar miki555551152023-05-07-2/+3
|
* updated bot/exts/core/help.py for Issue #1122Gravatar divyanshu2022-10-29-1/+1
|
* Support discord.py's new async cog loadingGravatar Chris Lovering2022-09-21-2/+2
|
* Allow help in DMsGravatar Chris Lovering2022-08-19-0/+2
| | | | Since there are some comands that work in DMs, we should allow the command to be ran there.
* Don't output command name twice in help commandGravatar Chris Lovering2022-08-19-1/+0
|
* Update help command to work with root_aliasesGravatar Chris Lovering2022-08-19-1/+3
| | | | | | Specifying root_aliases causes bookmark delete to be registered as a command rather than subcommand, which causes it to be listed even though subcommands usually aren't, and this isn't done correctly. Co-authored-by: wookie184 <[email protected]>
* Help command fix, normalize suggestions for unknown commands (#1064)Gravatar Rohan Reddy Alleti2022-08-18-12/+28
| | | Co-authored-by: Xithrius <[email protected]>
* Help: remove redundant space in subcommand aliasesGravatar Richard Si2022-06-25-1/+1
| | | `parent` already has a trailing space so let's not add *another* one.
* Isort: give the codebase a sortGravatar Matteo Bertucci2021-10-22-4/+1
|
* Move internal eval and rename utils to coreGravatar Janine vN2021-09-05-0/+562
Part of this restructure involves splitting out the massive evergreen folder into a `fun` folder and then a `utilities` folder. To help with that we've rename the `util` folder to `core`. The core functions to run the bot have been moved into this folder. `.source`, `.ping`, and `.int e` have been moved into this folder.