fix(core): add :config and :conv to filter prefix tables

:config and :conv were not in the prefix lists, so typing them
showed 'Plugin' mode but didn't route to the config/converter
providers. Also added :settings, :converter aliases.
This commit is contained in:
2026-03-28 13:30:10 +01:00
parent 7351ba868e
commit 7f07a93dec

View File

@@ -261,6 +261,10 @@ impl ProviderFilter {
(":systemd ", "uuctl"),
(":web ", "websearch"),
(":search ", "websearch"),
(":config ", "config"),
(":settings ", "config"),
(":conv ", "conv"),
(":converter ", "conv"),
];
// Check core prefixes
@@ -327,6 +331,10 @@ impl ProviderFilter {
(":systemd", "uuctl"),
(":web", "websearch"),
(":search", "websearch"),
(":config", "config"),
(":settings", "config"),
(":conv", "conv"),
(":converter", "conv"),
];
for (prefix_str, provider) in partial_core {