{{ message }}
disable_category does not disable commands that were registered later using register_command_set
#1556
Answered
by
kmvanbrunt
Sripadvallabh
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
kmvanbrunt
Jan 27, 2026
Replies: 2 comments 4 replies
-
|
@kmvanbrunt Do you have any thoughts about this? |
Beta Was this translation helpful? Give feedback.
3 replies
-
|
I just created a pull request to fix this. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

disable_categoryonly disables commands which currently exist. It's basically just a wrapper arounddisable_command.For now you will need to call
disable_categoryany time a newCommandSetis registered. I'll eventually update it to be more dynamic.These functions predate the
CommandSetstuff so they were written in a way which made sense at the time.