-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Explain how watch does not follow moves or renames #166
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This summarises the knowledge gathered from notify-rs#165 (comment) Closes: notify-rs#165
Well, yes, but this is only correct for Linux and macOS.
|
baszalmstra
added a commit
to baszalmstra/mun
that referenced
this pull request
Nov 19, 2019
The notify crate does not properly handle watching of recreated files on all platform. This commit instead watches the parent directory as proposed in the documentation of Notify. See: notify-rs/notify#166
baszalmstra
added a commit
to baszalmstra/mun
that referenced
this pull request
Nov 19, 2019
The notify crate does not properly handle watching of recreated files on all platform. This commit instead watches the parent directory as proposed in the documentation of Notify. See: notify-rs/notify#166
baszalmstra
added a commit
to baszalmstra/mun
that referenced
this pull request
Nov 20, 2019
The notify crate does not properly handle watching of recreated files on all platform. This commit instead watches the parent directory as proposed in the documentation of Notify. See: notify-rs/notify#166
baszalmstra
added a commit
to mun-lang/mun
that referenced
this pull request
Nov 22, 2019
The notify crate does not properly handle watching of recreated files on all platform. This commit instead watches the parent directory as proposed in the documentation of Notify. See: notify-rs/notify#166
Mohsen7s
pushed a commit
to Mohsen7s/arti
that referenced
this pull request
Feb 7, 2022
Fixes these messages: warning: this URL is not a hyperlink --> crates/arti/src/watch_cfg.rs:115:5 | 115 | /// notify-rs/notify#165 and | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://github.com/notify-rs/notify/issues/165>` | = note: `#[warn(rustdoc::bare_urls)]` on by default = note: bare URLs are not automatically turned into clickable links warning: this URL is not a hyperlink --> crates/arti/src/watch_cfg.rs:116:5 | 116 | /// notify-rs/notify#166 . | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://github.com/notify-rs/notify/pull/166>` | = note: bare URLs are not automatically turned into clickable links
1 task
0x6e
added a commit
to 0x6e/slint
that referenced
this pull request
Apr 18, 2024
Some editors may backup a file by renaming it to append ~, then saving the new file contents to a new file. notify-rs/notify#166 explains that a non-recursive watcher on the parent directory is the recommended way to deal with this situation. Closes: slint-ui#3641
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This summarises the knowledge gathered from #165 (comment)
Closes: #165