mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 12:16:42 +01:00
group modules and scripts
This commit is contained in:
parent
93a14a3040
commit
8794b2e05b
32 changed files with 34 additions and 26 deletions
|
|
@ -1,9 +1,14 @@
|
|||
use crate::*;
|
||||
pub const KEYS_APP: &str = include_str!("keys.edn");
|
||||
pub const KEYS_CLIP: &str = include_str!("keys_clip.edn");
|
||||
pub const KEYS_TRACK: &str = include_str!("keys_track.edn");
|
||||
pub const KEYS_SCENE: &str = include_str!("keys_scene.edn");
|
||||
pub const KEYS_MIX: &str = include_str!("keys_mix.edn");
|
||||
mod keys_clip; pub use self::keys_clip::*;
|
||||
mod keys_ins; pub use self::keys_ins::*;
|
||||
mod keys_outs; pub use self::keys_outs::*;
|
||||
mod keys_scene; pub use self::keys_scene::*;
|
||||
mod keys_track; pub use self::keys_track::*;
|
||||
pub const KEYS_APP: &str = include_str!("../edn/keys.edn");
|
||||
pub const KEYS_CLIP: &str = include_str!("../edn/keys_clip.edn");
|
||||
pub const KEYS_TRACK: &str = include_str!("../edn/keys_track.edn");
|
||||
pub const KEYS_SCENE: &str = include_str!("../edn/keys_scene.edn");
|
||||
pub const KEYS_MIX: &str = include_str!("../edn/keys_mix.edn");
|
||||
handle!(TuiIn: |self: Tek, input|Ok({
|
||||
// If editing, editor keys take priority
|
||||
if self.is_editing() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue