mirror of
https://codeberg.org/unspeaker/tek.git
synced 2026-02-22 00:39:03 +01:00
recollect edns
This commit is contained in:
parent
664cd8942f
commit
0257aa2b61
21 changed files with 15 additions and 19 deletions
|
|
@ -1,6 +0,0 @@
|
|||
(@up inc)
|
||||
(@down dec)
|
||||
(@right next)
|
||||
(@left prev)
|
||||
(@return set :length)
|
||||
(@escape cancel)
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
(:char append :char)
|
||||
(@backspace delete :last)
|
||||
(@return confirm)
|
||||
(@escape cancel)
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
(@up note/pos :note-pos-next)
|
||||
(@w note/pos :note-pos-next)
|
||||
(@down note/pos :note-pos-prev)
|
||||
(@s note/pos :note-pos-prev)
|
||||
(@comma note/len :note-len-prev)
|
||||
(@period note/len :note-len-next)
|
||||
(@plus note/range :note-range-next-)
|
||||
(@underscore note/range :note-range-prev-)
|
||||
|
||||
(@left time/pos :time-pos-prev)
|
||||
(@a time/pos :time-pos-prev)
|
||||
(@right time/pos :time-pos-next)
|
||||
(@d time/pos :time-pos-next)
|
||||
(@equal time/zoom :time-zoom-prev)
|
||||
(@minus time/zoom :time-zoom-next)
|
||||
(@z time/lock)
|
||||
|
||||
(@enter note/put)
|
||||
(@shift-enter note/append)
|
||||
(@del note/del)
|
||||
(@shift-del note/del)
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
(@n rename begin)
|
||||
(@t length begin)
|
||||
(@m import begin)
|
||||
(@x export begin)
|
||||
(@c clip color :current :random-color)
|
||||
(@openbracket select :previous)
|
||||
(@closebracket select :next)
|
||||
(@lt swap :current :previous)
|
||||
(@gt swap :current :next)
|
||||
(@delete clip/delete :current)
|
||||
(@shift-A clip/add :after :new-clip)
|
||||
(@shift-D clip/add :after :cloned-clip)
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
(@up select :prev)
|
||||
(@down select :next)
|
||||
(@right chdir :selected)
|
||||
(@left chdir :parent)
|
||||
(@return confirm)
|
||||
(@escape cancel)
|
||||
(:char append :char)
|
||||
(@backspace delete :last)
|
||||
|
|
@ -30,11 +30,11 @@ pub(crate) use std::fmt::Debug;
|
|||
|
||||
pub use ::midly; pub(crate) use ::midly::{*, num::*, live::*};
|
||||
|
||||
pub(crate) const KEYS_EDIT: &str = include_str!("keys_edit.edn");
|
||||
pub(crate) const KEYS_POOL: &str = include_str!("keys_pool.edn");
|
||||
pub(crate) const KEYS_FILE: &str = include_str!("keys_pool_file.edn");
|
||||
pub(crate) const KEYS_LENGTH: &str = include_str!("keys_clip_length.edn");
|
||||
pub(crate) const KEYS_RENAME: &str = include_str!("keys_clip_rename.edn");
|
||||
pub(crate) const KEYS_EDIT: &str = include_str!("../edn/keys_edit.edn");
|
||||
pub(crate) const KEYS_POOL: &str = include_str!("../edn/keys_pool.edn");
|
||||
pub(crate) const KEYS_FILE: &str = include_str!("../edn/keys_pool_file.edn");
|
||||
pub(crate) const KEYS_LENGTH: &str = include_str!("../edn/keys_clip_length.edn");
|
||||
pub(crate) const KEYS_RENAME: &str = include_str!("../edn/keys_clip_rename.edn");
|
||||
|
||||
/// Add "all notes off" to the start of a buffer.
|
||||
pub fn all_notes_off (output: &mut [Vec<Vec<u8>>]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue