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. --- .vscode/settings.json | 1 + 1 file changed, 1 insertion(+) (limited to '.vscode') diff --git a/.vscode/settings.json b/.vscode/settings.json index 3f1ff1d..7472e1c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,4 +7,5 @@ "mingling_pathf/test/Cargo.toml", "mingling_picker/test/Cargo.toml", ], + "rust-analyzer.cargo.features": ["mingling_support"], } -- cgit