aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/src/config
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: replace pack! macros with derive-based pipeline types魏曹先生45 hours1-15/+20
| | | | | | | | | Remove the `pack!`, `pack_err!`, `pack_structural!`, and `pack_err_structural!` macros, replacing all pipeline type definitions with `#[derive(Grouped)]` and `#[derive(Grouped, Wrap)]` attributes. This changes the generated struct shape from named-field structs with an `inner` field to tuple structs accessed via `.0`, and removes the auto-generated `name` and `info` fields from error types.
* feat: add description to FLAG_PAIR suggestion魏曹先生10 days1-1/+1
|
* feat(config): add metadata description for config command魏曹先生10 days1-1/+9
|
* feat(config): add cfg --pair flag and refactor config path魏曹先生10 days1-0/+110
Add `--pair` flag to output config values as `"key" = "value"` pairs, and provide escaped formatting for display. Move config path resolution to a helper function and expose the underlying hash map for rendering and completion.