You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 18, 2025. It is now read-only.
When respecting gitignore files to not watch, the current implementation only looks at the local .gitignore file, but not other ones that git itself recognizes, specially ~/.gitignore.
The best and common practice to gitignore editor temp files is to put the patters in ~/.gitignore, as they are something user-dependent and not project-dependent (and its hard for projects to stay inclusive to all types of editors and their settings).
Because of this, right now, when using cargo watch, I get a new execution whenever I open/close my editors (VIM), which is very often, because of the .*.swp files being created and dropped.
When respecting
gitignorefiles to not watch, the current implementation only looks at the local.gitignorefile, but not other ones thatgititself recognizes, specially~/.gitignore.The best and common practice to gitignore editor temp files is to put the patters in
~/.gitignore, as they are something user-dependent and not project-dependent (and its hard for projects to stay inclusive to all types of editors and their settings).Because of this, right now, when using
cargo watch, I get a new execution whenever I open/close my editors (VIM), which is very often, because of the.*.swpfiles being created and dropped.