Ignore temp files created by IntelliJ when saving
authorSteve Francia <steve.francia@gmail.com>
Tue, 22 Dec 2015 00:46:12 +0000 (19:46 -0500)
committerSteve Francia <steve.francia@gmail.com>
Mon, 25 Jan 2016 19:41:47 +0000 (14:41 -0500)
commands/hugo.go

index 3b2e172c6fe510eacb26cef273469a42ca0d76a6..57f2796b017f6d3bd4dee4854acbbf5b01af737c 100644 (file)
@@ -577,7 +577,7 @@ 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___")
+                                       istemp := strings.HasSuffix(ext, "~") || (ext == ".swp") || (ext == ".swx") || (ext == ".tmp") || strings.HasPrefix(ext, ".goutputstream") || strings.HasSuffix(ext, "jb_old___")|| strings.HasSuffix(ext, "jb_bak___")
                                        if istemp {
                                                continue
                                        }