mirror of
https://github.com/nushell/nushell
synced 2025-01-06 18:29:02 +00:00
b004e80f77
* [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
5 lines
131 B
Rust
5 lines
131 B
Rust
mod help_completions;
|
|
mod menu_completions;
|
|
|
|
pub use help_completions::NuHelpCompleter;
|
|
pub use menu_completions::NuMenuCompleter;
|