wip: command palette

This commit is contained in:
🪞👃🪞 2024-07-12 15:39:38 +03:00
parent 6a738375e2
commit 145827913a
4 changed files with 137 additions and 15 deletions

View file

@ -1,18 +1,20 @@
pub mod chain;
pub mod arranger;
pub mod sequencer;
pub mod transport;
pub mod plugin;
pub mod border;
pub mod theme;
pub mod chain;
pub mod help;
pub mod plugin;
pub mod sequencer;
pub mod split;
pub mod theme;
pub mod transport;
pub use self::split::*;
pub use self::border::*;
pub use self::theme::*;
pub use self::arranger::*;
pub use self::border::*;
pub use self::chain::ChainView;
pub use self::help::*;
pub use self::sequencer::{SequencerView, BufferedSequencerView};
pub use self::split::*;
pub use self::theme::*;
use crate::{render, App, core::*};