Usually it's good how Julia REPL abbreviates output, using \vdots (vertical ellipsis) based on window height:
julia> [1:100]
100-element Array{Int64,1}:
1
2
3
4
5
6
⋮
95
96
97
98
99
100
julia>
But is there any way to prevent it (for those times when you don't mind
scrolling a bit) — apart from resizing the window...?
