From 41fe0580212b3a681fd767d331fd8875ee59b019 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 16 Jul 2026 18:58:31 +0800 Subject: feat(picker): add `Flag` value type and `Pickable` implementation Add a new `Flag` enum in `mingling_picker::value` that explicitly distinguishes between an absent flag (`Inactive`) and a present flag (`Active`), along with its `Pickable` implementation. Rename internal fields from `flag_*` to `arg_*` for consistency, update the default naming case to `Kebab`, and enable the `mingling_support` feature in workspace settings. --- .zed/settings.json | 3 +++ 1 file changed, 3 insertions(+) (limited to '.zed') diff --git a/.zed/settings.json b/.zed/settings.json index 3ecbbe3..12c901e 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -10,6 +10,9 @@ "mingling_pathf/test/Cargo.toml", "mingling_picker/test/Cargo.toml", ], + "cargo": { + "features": ["mingling_support"], + }, }, }, }, -- cgit