nushell/crates/nu-cli/src/menus/mod.rs
Michael Angerman b004e80f77
Bump Reedline for the Menu Refactor (#11658)
* [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
2024-01-28 08:26:03 -08:00

5 lines
131 B
Rust

mod help_completions;
mod menu_completions;
pub use help_completions::NuHelpCompleter;
pub use menu_completions::NuMenuCompleter;