commands: Navigate to changed on CREATE
authorVasiliy Solovey <iam@miltador.pro>
Sat, 8 Jul 2017 06:06:38 +0000 (09:06 +0300)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 8 Jul 2017 07:37:24 +0000 (09:37 +0200)
When working with content from IntelliJ IDE,
like WebStorm, every file save is followed by
two events: "RENAME" and then "CREATE".

commands/hugo.go

index b939ce6e9a4171c45b5d5c553cc4c3403f00e0cc..3210cdba666f0f477d228bbc63faf0e3a064f186 100644 (file)
@@ -990,8 +990,8 @@ func (c *commandeer) newWatcher(port int) error {
 
                                                        // It is probably more confusing than useful
                                                        // to navigate to a new URL on RENAME etc.
-                                                       // so for now we use the WRITE event only.
-                                                       name := pickOneWritePath(dynamicEvents)
+                                                       // so for now we use the WRITE and CREATE events only.
+                                                       name := pickOneWriteOrCreatePath(dynamicEvents)
 
                                                        if name != "" {
                                                                p = Hugo.GetContentPage(name)
@@ -1027,11 +1027,11 @@ func (c *commandeer) newWatcher(port int) error {
        return nil
 }
 
-func pickOneWritePath(events []fsnotify.Event) string {
+func pickOneWriteOrCreatePath(events []fsnotify.Event) string {
        name := ""
 
        for _, ev := range events {
-               if ev.Op&fsnotify.Write == fsnotify.Write && len(ev.Name) > len(name) {
+               if (ev.Op&fsnotify.Write == fsnotify.Write || ev.Op&fsnotify.Create == fsnotify.Create) && len(ev.Name) > len(name) {
                        name = ev.Name
                }
        }