refactor: split cmd.rs
This commit is contained in:
19
src/command/cmd/mod.rs
Normal file
19
src/command/cmd/mod.rs
Normal file
@ -0,0 +1,19 @@
|
||||
pub mod core;
|
||||
pub mod navigation;
|
||||
pub mod mode;
|
||||
pub mod cell;
|
||||
pub mod search;
|
||||
pub mod panel;
|
||||
pub mod grid;
|
||||
pub mod tile;
|
||||
pub mod text_buffer;
|
||||
pub mod commit;
|
||||
pub mod effect_cmds;
|
||||
pub mod registry;
|
||||
|
||||
// Re-export items used by external code
|
||||
pub use self::core::{Cmd, CmdContext, CmdRegistry};
|
||||
pub use registry::default_registry;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
Reference in New Issue
Block a user