From b41683349eeddf6155144ecd1cb8f14e1f73b772 Mon Sep 17 00:00:00 2001 From: Pramodh-G Date: Wed, 30 Jun 2021 18:45:18 +0530 Subject: [PATCH] add paging to help> prompt (#36460) --- stdlib/REPL/src/docview.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/REPL/src/docview.jl b/stdlib/REPL/src/docview.jl index b6eb73bcd5faa..8e884081edfea 100644 --- a/stdlib/REPL/src/docview.jl +++ b/stdlib/REPL/src/docview.jl @@ -79,7 +79,7 @@ function insert_hlines(io::IO, docs) push!(v, doc) n == length(docs.content) || push!(v, Markdown.HorizontalRule()) end - return Markdown.MD(v) + return Markdown.MD(v) |> REPL.TerminalMenus.pager end function formatdoc(d::DocStr)