aboutsummaryrefslogtreecommitdiff
path: root/editors/zed/files/patch-crates_fs_src_fs__watcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'editors/zed/files/patch-crates_fs_src_fs__watcher.rs')
-rw-r--r--editors/zed/files/patch-crates_fs_src_fs__watcher.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/editors/zed/files/patch-crates_fs_src_fs__watcher.rs b/editors/zed/files/patch-crates_fs_src_fs__watcher.rs
new file mode 100644
index 000000000000..46e20b340014
--- /dev/null
+++ b/editors/zed/files/patch-crates_fs_src_fs__watcher.rs
@@ -0,0 +1,20 @@
+--- crates/fs/src/fs_watcher.rs.orig 2025-11-15 04:58:18 UTC
++++ crates/fs/src/fs_watcher.rs
+@@ -70,7 +70,7 @@ impl Watcher for FsWatcher {
+ return Ok(());
+ }
+ }
+- #[cfg(target_os = "linux")]
++ #[cfg(any(target_os = "linux", target_os = "freebsd"))]
+ {
+ log::trace!("path to watch is already watched: {path:?}");
+ if self.registrations.lock().contains_key(path) {
+@@ -83,7 +83,7 @@ impl Watcher for FsWatcher {
+
+ #[cfg(target_os = "windows")]
+ let mode = notify::RecursiveMode::Recursive;
+- #[cfg(target_os = "linux")]
++ #[cfg(any(target_os = "linux", target_os = "freebsd"))]
+ let mode = notify::RecursiveMode::NonRecursive;
+
+ let registration_id = global({