ui: enter EX mode with space

embed
Manos Pitsidianakis 2019-03-25 13:41:39 +02:00
parent 4c26077f30
commit a2e81ed354
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ fn main() {
drop(state);
break 'main;
},
Key::Char(';') => {
Key::Char(' ') => {
state.mode = UIMode::Execute;
state.rcv_event(UIEvent { id: 0, event_type: UIEventType::ChangeMode(UIMode::Execute)});
state.redraw();