mirror of
https://github.com/nushell/nushell.git
synced 2025-07-08 18:37:07 +02:00
# Description This is mainly https://github.com/nushell/nushell/pull/13450 (which got reverted). Additionally: - always clear IDs on import, disallow specifying IDs when piping - added extra tests - create backup of the history # User-Facing Changes New command: `history import` # Tests + Formatting Added mostly integration tests and a few smaller unit tests.
17 lines
512 B
Rust
17 lines
512 B
Rust
mod commandline;
|
|
mod default_context;
|
|
mod history;
|
|
mod keybindings;
|
|
mod keybindings_default;
|
|
mod keybindings_list;
|
|
mod keybindings_listen;
|
|
|
|
pub use commandline::{Commandline, CommandlineEdit, CommandlineGetCursor, CommandlineSetCursor};
|
|
pub use history::{History, HistoryImport, HistorySession};
|
|
pub use keybindings::Keybindings;
|
|
pub use keybindings_default::KeybindingsDefault;
|
|
pub use keybindings_list::KeybindingsList;
|
|
pub use keybindings_listen::KeybindingsListen;
|
|
|
|
pub use default_context::add_cli_context;
|