mirror of
https://github.com/wez/wezterm.git
synced 2024-12-23 13:21:38 +03:00
mux: update last input time for local pane actions
This commit updates the last input time for the active client id when calling into local pane. That time is visible in the `wezterm cli list-clients` output.
This commit is contained in:
parent
9a241509a4
commit
324815b625
@ -337,6 +337,12 @@ impl Mux {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn record_input_for_current_identity(&self) {
|
||||
if let Some(ident) = self.identity.borrow().as_ref() {
|
||||
self.client_had_input(ident);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn register_client(&self, client_id: Arc<ClientId>) {
|
||||
self.clients
|
||||
.borrow_mut()
|
||||
|
@ -239,10 +239,12 @@ impl Pane for LocalPane {
|
||||
}
|
||||
|
||||
fn mouse_event(&self, event: MouseEvent) -> Result<(), Error> {
|
||||
Mux::get().unwrap().record_input_for_current_identity();
|
||||
self.terminal.borrow_mut().mouse_event(event)
|
||||
}
|
||||
|
||||
fn key_down(&self, key: KeyCode, mods: KeyModifiers) -> Result<(), Error> {
|
||||
Mux::get().unwrap().record_input_for_current_identity();
|
||||
if self.tmux_domain.borrow().is_some() {
|
||||
log::error!("key: {:?}", key);
|
||||
if key == KeyCode::Char('q') {
|
||||
@ -255,6 +257,7 @@ impl Pane for LocalPane {
|
||||
}
|
||||
|
||||
fn key_up(&self, key: KeyCode, mods: KeyModifiers) -> Result<(), Error> {
|
||||
Mux::get().unwrap().record_input_for_current_identity();
|
||||
self.terminal.borrow_mut().key_up(key, mods)
|
||||
}
|
||||
|
||||
@ -270,6 +273,7 @@ impl Pane for LocalPane {
|
||||
}
|
||||
|
||||
fn writer(&self) -> RefMut<dyn std::io::Write> {
|
||||
Mux::get().unwrap().record_input_for_current_identity();
|
||||
self.pty.borrow_mut()
|
||||
}
|
||||
|
||||
@ -278,6 +282,7 @@ impl Pane for LocalPane {
|
||||
}
|
||||
|
||||
fn send_paste(&self, text: &str) -> Result<(), Error> {
|
||||
Mux::get().unwrap().record_input_for_current_identity();
|
||||
if self.tmux_domain.borrow().is_some() {
|
||||
Ok(())
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user