We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8df66f7 commit 34f02cfCopy full SHA for 34f02cf
src/watch.rs
@@ -102,8 +102,7 @@ pub fn watch(
102
watch_state.render()?;
103
}
104
WatchEvent::NotifyErr(e) => {
105
- watch_state.into_writer().write_all(NOTIFY_ERR.as_bytes())?;
106
- return Err(Error::from(e));
+ return Err(Error::from(e).context(NOTIFY_ERR));
107
108
WatchEvent::TerminalEventErr(e) => {
109
return Err(Error::from(e).context("Terminal event listener failed"));
0 commit comments