You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/egui-term/src/alacritty/mod.rs
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -230,8 +230,10 @@ impl Terminal {
230
230
let event_proxy = EventProxy(event_sender);
231
231
let term = Term::new(config,&term_size, event_proxy.clone());
232
232
let term = Arc::new(FairMutex::new(term));
233
+
233
234
let pty_event_loop = EventLoop::new(term.clone(), event_proxy, pty,false,false)?;
234
235
let notifier = Notifier(pty_event_loop.channel());
236
+
let pty_notifier = Notifier(pty_event_loop.channel());
235
237
236
238
let url_regex = r#"(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file://|git://|ssh:|ftp://)[^\u{0000}-\u{001F}\u{007F}-\u{009F}<>"\s{-}\^⟨⟩`]+"#;
237
239
let url_regex =
@@ -246,8 +248,10 @@ impl Terminal {
246
248
panic!("pty_event_subscription_{id}: sending PtyEvent is failed, error: {err}")
0 commit comments