-
-
Notifications
You must be signed in to change notification settings - Fork 180
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
[feature request] [watch task] ignore dotfiles #348
Comments
For now, the preferred solution is to configure your editor to write tempfiles and backups elsewhere, or disable them altogether. For Vim this should disable these temp files: set noswapfile |
You can also configure Vim to put its swap files elsewhere:
|
yeah, that's one way to do it. But would it be too difficult to add a config option to boot as well? I like having the tmpfiles in the same directory so that I can easily |
There are performance implications, and it adds complexity. It would need to be carefully designed. |
vim creates temporary files (prefixed with a
.
) while editing, which cases the(watch)
task to needlessly fire. It would be great to have watch ignore dotfiles altogether, and it would also be nice to be able to specify a whitelist or blacklist of files to care about.The text was updated successfully, but these errors were encountered: