fonsp / Pluto.jl

🎈 Simple reactive notebooks for Julia
https://plutojl.org/
MIT License
4.99k stars 297 forks source link

Captured stdout width #2170

Open diegozea opened 2 years ago

diegozea commented 2 years ago

Hi! I think it could be great to expand the captured output to, at least, 80 or 90 characters in width. Some old terminal software uses 80 characters width in their outputs. For example:

image

Cheers,

diegozea commented 2 years ago

An reproducible example using a width of 90 charaters:

# ╔═╡ 4c4d8eaa-87ae-4f2b-8f33-4cced2cc824c
using FastME_jll

# ╔═╡ 0505615f-bf25-4316-923e-eb4dcef34129
fastme() do _fastme
    run(`$_fastme -h`)
end

image