This commit is contained in:
jif-oai
2025-11-14 18:19:00 +01:00
parent 479d125a35
commit 38a34d8888
2 changed files with 2 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ fn post_macos_notification(_: &str) -> bool {
/// Command that emits an OSC 9 desktop notification with a message.
#[derive(Debug, Clone)]
struct PostNotification(pub String);
pub struct PostNotification(pub String);
impl Command for PostNotification {
fn write_ansi(&self, f: &mut impl fmt::Write) -> fmt::Result {

View File

@@ -37,6 +37,7 @@ use tokio_stream::Stream;
use crate::custom_terminal;
use crate::custom_terminal::Terminal as CustomTerminal;
use crate::notifications::PostNotification;
#[cfg(unix)]
use crate::tui::job_control::SUSPEND_KEY;
#[cfg(unix)]