mitranim / gow

Missing watch mode for Go commands. Watch Go files and execute a command like "go run" or "go test"
The Unlicense
772 stars 29 forks source link

No trailing newline in help message #13

Closed HiFaraz closed 3 years ago

HiFaraz commented 3 years ago

Hi, your trailing newline in your help message is trimmed away by your call to strings.TrimSpace:

https://github.com/mitranim/gow/blob/d60314a242a5b63ba662051a507f5d2c8ae95c42/gow.go#L28

Discovered it through playing with gow in my terminal.

Thanks for this useful package1

mitranim commented 3 years ago

Fixed. Somehow my terminal was adding a newline so I didn't notice. Was it mixing with the next prompt in yours?

mitranim commented 3 years ago

Should be fine now, thanks for reporting.

HiFaraz commented 3 years ago

Thank you!