From 7f07a93dec72488f5a6c4d03cb06351de1497cd8 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Sat, 28 Mar 2026 13:30:10 +0100 Subject: [PATCH] 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. --- crates/owlry-core/src/filter.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/owlry-core/src/filter.rs b/crates/owlry-core/src/filter.rs index 0ec34bd..616d8be 100644 --- a/crates/owlry-core/src/filter.rs +++ b/crates/owlry-core/src/filter.rs @@ -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 {