Change summary
crates/fs/src/fs.rs | 2 ++
crates/zed/src/main.rs | 2 ++
2 files changed, 4 insertions(+)
Detailed changes
@@ -301,6 +301,8 @@ impl Fs for RealFs {
.configure(Config::default().with_poll_interval(latency))
.unwrap();
+ //TODO: unblock this
+ #[cfg(not(target_os = "linux"))]
watcher
.watch(path, notify::RecursiveMode::Recursive)
.unwrap();
@@ -257,6 +257,8 @@ fn main() {
initialize_workspace(app_state.clone(), cx);
if stdout_is_a_pty() {
+ //TODO: unblock this
+ #[cfg(not(target_os = "linux"))]
upload_panics_and_crashes(http.clone(), cx);
cx.activate(true);
let urls = collect_url_args();