dear julia experts—does the REPL have options that set some default parameters on how it prints? (think R’s options(digits=10).) In particular, is it possible to get fewer lines for output of long vectors (e.g., rand(1000))? I like the \vdots format, but would rather not have everything else scrolled off screen. Fewer would be nice…
Not at the moment, but it would be a good feature addition which should be fairly straightforward to add now that we have IOContext wrappers to control this sort of thing.
Not from my cursory investigation could find. The closest PR I could find is on the ability to customize the presentation of float precision in the REPL. That being said, PRs are always welcome