Make `--navigateToChanged` more robust on Windows
authorAnthony Fok <foka@debian.org>
Tue, 27 Jun 2017 09:17:43 +0000 (03:17 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 27 Jun 2017 09:45:54 +0000 (11:45 +0200)
This ensures the new "open 'current content page' in browser" works
on Windows, especially with Emacs and Vim.

Special thanks to @bep for coming up with the idea of the fix.

See #3645

commands/hugo.go

index 42e129cf15c73a75d3b73c97a3d871c74ec16405..b939ce6e9a4171c45b5d5c553cc4c3403f00e0cc 100644 (file)
@@ -1028,13 +1028,15 @@ func (c *commandeer) newWatcher(port int) error {
 }
 
 func pickOneWritePath(events []fsnotify.Event) string {
+       name := ""
+
        for _, ev := range events {
-               if ev.Op&fsnotify.Write == fsnotify.Write {
-                       return ev.Name
+               if ev.Op&fsnotify.Write == fsnotify.Write && len(ev.Name) > len(name) {
+                       name = ev.Name
                }
        }
 
-       return ""
+       return name
 }
 
 func (c *commandeer) isStatic(path string) bool {