diff --git a/README.md b/README.md index 3131269..6fc297f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Doing the right thing includes: * Supports displaying ANSI color coded texts (like the output from `git diff` [| `riff`](https://github.com/walles/riff) for example) * Supports UTF-8 input and output -* Automatic decompression of compressed files (`.gz`, `.bz2`, `.xz`) +* **Automatic decompression** of compressed files (`.gz`, `.bz2`, `.xz`) * The position in the file is always shown * Supports **word wrapping** (on actual word boundaries) if requested using `--wrap` or by pressing w diff --git a/moar.go b/moar.go index 95b2b1b..8207a36 100644 --- a/moar.go +++ b/moar.go @@ -38,6 +38,8 @@ func printUsage(output io.Writer, flagSet *flag.FlagSet, printCommandline bool) _, _ = fmt.Fprintln(output, " moar [options] ") _, _ = fmt.Fprintln(output, " ... | moar") _, _ = fmt.Fprintln(output, " moar < file") + _, _ = fmt.Fprintln(output, "") + _, _ = fmt.Fprintln(output, "Shows file contents. Compressed files will be transparently decompressed.") _, _ = fmt.Fprintln(output) _, _ = fmt.Fprintln(output, "Environment:") if len(moarEnv) == 0 {