Maybe a special REPL mode where you can get a pager view of ans?
julia> Sys.dllist()
81-element Array{String,1}:
"/Users/ivarne/dev/julia/usr/lib/libjulia.dylib"
"/usr/lib/libSystem.B.dylib"
"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"
"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices"
"/usr/lib/libc++.1.dylib"
"/usr/lib/libz.1.dylib"
⋮
"/Users/ivarne/dev/julia/usr/lib/libpcre.1.dylib"
"/Users/ivarne/dev/julia/usr/lib/libdSFMT.dylib"
"/Users/ivarne/dev/julia/usr/lib/libgmp.10.dylib"
"/Users/ivarne/dev/julia/usr/lib/libmpfr.4.dylib"
"/Users/ivarne/dev/julia/usr/lib/libopenlibm.dylib.0.4"
julia>&
And Julia will show up a pager view of the 81 element vector, so that I can
scroll, without just dumping massive datasets to the terminal.
On Friday, September 5, 2014 5:24:35 PM UTC+2, Rick Graham wrote:
>
> Help messages ⊂ All output
>
> On Friday, September 5, 2014 11:00:49 AM UTC-4, Rick Graham wrote:
>>
>> I know there has been previous discussion about paging through data in
>> the REPL, but I'd like to know if it is possible to turn on a *full*
>> REPL pager.
>>
>> By full pager, I mean that the REPL is "terminal aware" and all output is
>> paged. All output would even include such things as the "methods
>> available" list when hitting TAB after an open paren, etc.
>>
>>