diff options
| -rw-r--r-- | state.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,10 +86,10 @@ func (PromptPrinter) PrintPage(state *BrowserState, body string) error { return nil } - lessarg := []string{} + lessarg := []string{"-R"} switch state.Pager { case "auto": - lessarg = []string{"-F"} + lessarg = append(lessarg, "-F") fallthrough case "always": less, err := exec.LookPath("less") |
