mirror of
https://codeberg.org/unspeaker/tek.git
synced 2026-02-01 08:36:42 +01:00
add global 'c' command
This commit is contained in:
parent
5cca7dc22b
commit
fa8316c651
1 changed files with 3 additions and 0 deletions
|
|
@ -443,6 +443,9 @@ impl InputToCommand<Tui, SequencerTui> for SequencerCommand {
|
||||||
key!(Char('_')) => SequencerCommand::Editor(PhraseCommand::SetTimeZoom(next_zoom)),
|
key!(Char('_')) => SequencerCommand::Editor(PhraseCommand::SetTimeZoom(next_zoom)),
|
||||||
key!(Char('=')) => SequencerCommand::Editor(PhraseCommand::SetTimeZoom(prev_zoom)),
|
key!(Char('=')) => SequencerCommand::Editor(PhraseCommand::SetTimeZoom(prev_zoom)),
|
||||||
key!(Char('+')) => SequencerCommand::Editor(PhraseCommand::SetTimeZoom(prev_zoom)),
|
key!(Char('+')) => SequencerCommand::Editor(PhraseCommand::SetTimeZoom(prev_zoom)),
|
||||||
|
key!(Char('c')) => SequencerCommand::Phrases(
|
||||||
|
PhrasesCommand::input_to_command(&state.phrases, input)?,
|
||||||
|
),
|
||||||
_ => return None
|
_ => return None
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue