We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6be30b commit 2989cc1Copy full SHA for 2989cc1
src/kernel.jl
@@ -8,6 +8,11 @@ using IJulia
8
9
ccall(:jl_install_sigint_handler, Void, ())
10
11
+# the size of truncated output to show should not depend on the terminal
12
+# where the kernel is launched, since the display is elsewhere
13
+ENV["LINES"] = 30
14
+ENV["COLUMNS"] = 80
15
+
16
println(IJulia.orig_STDOUT, "Starting kernel event loops.")
17
IJulia.watch_stdio()
18
for sock in (IJulia.requests, IJulia.control)
0 commit comments