Ignore temporary file "4913" created by Vim
authorAnthony Fok <foka@debian.org>
Fri, 12 Feb 2016 10:54:37 +0000 (18:54 +0800)
committerAnthony Fok <foka@debian.org>
Fri, 12 Feb 2016 16:03:29 +0000 (00:03 +0800)
commands/hugo.go

index 8a45fbe3c0bfa7d5635ce15faa73b4fbca736626..ce96e21c92fbbb75a3e52f0afb60f398771f7b76 100644 (file)
@@ -711,7 +711,15 @@ func NewWatcher(port int) error {
 
                                for _, ev := range evs {
                                        ext := filepath.Ext(ev.Name)
-                                       istemp := strings.HasSuffix(ext, "~") || (ext == ".swp") || (ext == ".swx") || (ext == ".tmp") || strings.HasPrefix(ext, ".goutputstream") || strings.HasSuffix(ext, "jb_old___") || strings.HasSuffix(ext, "jb_bak___") || (ext == ".DS_Store")
+                                       istemp := strings.HasSuffix(ext, "~") ||
+                                               (ext == ".swp") ||
+                                               (ext == ".swx") ||
+                                               (ext == ".tmp") ||
+                                               (ext == ".DS_Store") ||
+                                               filepath.Base(ev.Name) == "4913" ||
+                                               strings.HasPrefix(ext, ".goutputstream") ||
+                                               strings.HasSuffix(ext, "jb_old___") ||
+                                               strings.HasSuffix(ext, "jb_bak___")
                                        if istemp {
                                                continue
                                        }