Skip to content

Commit

Permalink
don't combine keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Feb 9, 2024
1 parent 5729b89 commit 57719f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use {
QueueableCommand,
},
EventSource,
EventSourceOptions,
},
};

Expand Down Expand Up @@ -116,7 +117,10 @@ pub fn run() -> anyhow::Result<()> {
#[cfg(windows)]
w.queue(EnableMouseCapture)?;

let event_source = EventSource::new()?;
let event_source = EventSource::with_options(EventSourceOptions {
combine_keys: false,
..Default::default()
})?;
let mut job_stack = JobStack::new(&settings);
let mut next_job = JobRef::Initial;
let mut result = Ok(());
Expand Down

0 comments on commit 57719f1

Please sign in to comment.