Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Francia <steve.francia@gmail.com>2016-06-02 22:29:52 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-06-03 00:47:01 +0300
commitd1cf262b74e38feb95466a906a5775340024ad95 (patch)
tree5d03e903d97dff329838bf26ed176bf2c2756e92 /commands
parentf8e4a0608c177988e796e598e96e6f836d247c7c (diff)
Ignore __jb_tmp___ files created by IntelliJ
Diffstat (limited to 'commands')
-rw-r--r--commands/hugo.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/hugo.go b/commands/hugo.go
index 7d989d2d9..5ec3dc582 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 {