notify icon indicating copy to clipboard operation
notify copied to clipboard

🔭 Cross-platform filesystem notification library for Rust.

Results 118 notify issues
Sort by recently updated
recently updated
newest added

Hi, I'm new in rust and new in notify. I want to monitor content change in a file using code below. When I change my `123.sql` the event will be...

A-discussion

To enable this API: ```rust for event in &watcher { // ... } ``` Explicitly available with `.iter()` as idiomatic.

A-enhancement
Z-needs info

We're allocating a _lot_ of `PathBuf`s all over the place (often by cloning). Reducing this would improve performance for Notify's runtime. Some notes: - We probably want to own them....

A-enhancement

When reading through the [next ideas draft](https://github.com/passcod/notify/wiki/Presentation) I noticed that one of the benefits of the new design is the ability to dynamically switch between backends as-needed, depending on system...

A-enhancement

Currently if the `Recursive` bit is specified, every sub-directory of the specified directory will be watched unconditionally. In some situations, it's possible to exclude entire directories, potentially with many files...

A-enhancement

I've noticed that `notify` spawns a thread for each watcher object. This isn't a good fit for the app I'm writing, which really just spends all its time watching a...

A-enhancement

Since there can only be one `RecommendedWatcher`, why do we still need to explicitly specify the type? Taken from the new docs. ```rust use notify::{Watcher, RecommendedWatcher, RecursiveMode, Result}; fn main()...

Z-good first issue
B-doc

#### System details - OS/Platform name and version: `Linux 4.15.0-74-generic #84-Ubuntu SMP Thu Dec 19 08:06:28 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux` - Rust version (if building from source): `rustc...

#### System details - OS/Platform name and version: macOS 10.13.6 on a MacBook Pro (15 Zoll, 2016) - Rust version (if building from source): `rustc --version`: `rustc 1.38.0-nightly (07e0c3651 2019-07-16)`...

A-bug
os-mac