mirror of
https://github.com/nushell/nushell.git
synced 2025-06-04 00:56:11 +02:00
* [Refactor Menu System with Composition of Menu Functions](https://github.com/nushell/reedline/issues/706) * Move Description Menu over to Reedline to consolidate location of the Menus which will simplify further changes and maintenance to the Menu system going forward * Removes lots of code duplication in the Menu system on the Reedline side which should ease a developers ability to develop new cool menus for Reedline moving forward
6 lines
131 B
Rust
6 lines
131 B
Rust
mod help_completions;
|
|
mod menu_completions;
|
|
|
|
pub use help_completions::NuHelpCompleter;
|
|
pub use menu_completions::NuMenuCompleter;
|