mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
unpark the interrupt handler after resuming
This commit is contained in:
parent
05f4352722
commit
c9b52761ec
1 changed files with 2 additions and 4 deletions
|
@ -152,12 +152,12 @@ where
|
|||
F: FnOnce() -> R,
|
||||
{
|
||||
let handler = INTERRUPT_HANDLER.get().unwrap();
|
||||
handler.handle.thread().unpark();
|
||||
|
||||
handler
|
||||
.running
|
||||
.store(true, std::sync::atomic::Ordering::Relaxed);
|
||||
|
||||
handler.handle.thread().unpark();
|
||||
|
||||
let res = (f)();
|
||||
|
||||
handler.controller.resume();
|
||||
|
@ -1199,8 +1199,6 @@ impl super::PluginSystem for SteelScriptingEngine {
|
|||
event: PromptEvent,
|
||||
) -> bool {
|
||||
if enter_engine(|x| x.global_exists(command)) {
|
||||
// let shellwords = Shellwords::from(input);
|
||||
// let args = shellwords.words();
|
||||
let args = parts;
|
||||
|
||||
// We're finalizing the event - we actually want to call the function
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue