aboutsummaryrefslogtreecommitdiff
path: root/docs/pages/10-help.md
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: remove Node type and simplify dispatcher macro syntax魏曹先生3 days1-2/+2
| | | | | | | The `dispatcher!` macro no longer requires a `CMD*` dispatcher type argument; the dispatcher struct is now generated internally as `__Dispatcher{Pascal}`. The `Node` type, `node!` macro, and `Dispatcher::node()` / `clone_dispatcher()` methods are removed.
* refactor!: remove dynamic dispatcher registration API魏曹先生3 days1-1/+0
| | | | | | | Dispatchers are now always registered at compile time, removing the `with_dispatcher` / `with_dispatchers` methods and the `PathfinderConfig` API. The `dispatch_tree` feature now only controls the matching strategy (trie vs linear list).
* chore!: rename ErrorDispatcherNotFound to EntryFallback魏曹先生2026-08-031-3/+3
| | | | | | | | Rename the internal fallback type and its associated `ProgramCollect` plumbing from `ErrorDispatcherNotFound`/`build_dispatcher_not_found` to `EntryFallback`/`build_entry_fallback`, along with the generated enum variant and pack type. Update all documentation, examples, and tests accordingly.
* docs: migrate renderer examples to buffer macro and update docs魏曹先生2026-07-201-14/+12
| | | | | | | | Update all documentation and code examples to use the new `#[renderer(buffer)]` pattern with `r_println!` instead of manually constructing `RenderResult` with `writeln!`.
* docs: Update help functions note to use `writeln!` instead of魏曹先生2026-07-111-1/+1
| | | | `r_println!`
* docs: migrate renderers from `r_println!` to `RenderResult` return type魏曹先生2026-07-111-7/+11
|
* feat(docs): add Chinese and English documentation for Mingling tutorials魏曹先生2026-06-301-0/+69
Add comprehensive documentation covering Declare a Dispatcher, Declare a Chain, Rendering Results, Multi-Command Program, Argument Parsing with Picker and Clap, Program Setup, Error Handling, Help Info, Resource System, Exit Code Control, Hook System, Testing, Completion, Structural Rendering, and Core Concepts