From: Anthony Fok Date: Tue, 27 Jun 2017 09:17:43 +0000 (-0600) Subject: Make `--navigateToChanged` more robust on Windows X-Git-Tag: v0.25~37 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=30e14cc31;p=brevno-suite%2Fhugo Make `--navigateToChanged` more robust on Windows 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 --- diff --git a/commands/hugo.go b/commands/hugo.go index 42e129cf..b939ce6e 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -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 {