ignore emacs temporary files
and fix ignoring of dotfiles
This commit is contained in:
parent
c1b630e975
commit
a2e0d0382c
1 changed files with 5 additions and 2 deletions
|
@ -120,8 +120,11 @@ func filter(e fsnotify.Event) bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// Avoid some temp files that vim writes
|
_, fname := filepath.Split(e.Name)
|
||||||
if strings.HasSuffix(e.Name, "~") || strings.HasSuffix(e.Name, ".swp") || strings.HasPrefix(e.Name, ".") {
|
|
||||||
|
// Avoid some temp files that vim or emacs writes
|
||||||
|
if strings.HasSuffix(e.Name, "~") || strings.HasSuffix(e.Name, ".swp") || strings.HasPrefix(fname, ".") ||
|
||||||
|
(strings.HasPrefix(fname, "#") && strings.HasSuffix(fname, "#")) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue