From d1cf262b74e38feb95466a906a5775340024ad95 Mon Sep 17 00:00:00 2001 From: Steve Francia Date: Thu, 2 Jun 2016 15:29:52 -0400 Subject: [PATCH] Ignore __jb_tmp___ files created by IntelliJ --- commands/hugo.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/hugo.go b/commands/hugo.go index 7d989d2d..5ec3dc58 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -749,6 +749,7 @@ func NewWatcher(port int) error { filepath.Base(ev.Name) == "4913" || // vim strings.HasPrefix(ext, ".goutputstream") || // gnome strings.HasSuffix(ext, "jb_old___") || // intelliJ + strings.HasSuffix(ext, "jb_tmp___") || // intelliJ strings.HasSuffix(ext, "jb_bak___") || // intelliJ strings.HasPrefix(ext, ".sb-") // byword if istemp { -- 2.30.2