We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e1d8ea commit d2958f5Copy full SHA for d2958f5
2 files changed
src/ipython_jl/entrypoints.py
@@ -17,7 +17,6 @@ def post_startup_configuration(ip):
17
from . import ipyext
18
ip.run_cell(dedent("""
19
%load_ext {ipyext}
20
- %gui julia
21
""".format(ipyext=ipyext.__name__)))
22
23
src/ipython_jl/ipyext.py
@@ -59,6 +59,8 @@ def load_ipython_extension(ip):
59
60
from IPython.terminal.pt_inputhooks import register
61
register("julia", julia_inputhook)
62
+ if not ip.active_eventloop:
63
+ ip.enable_gui("julia")
64
65
ip.set_hook("complete_command", _julia_completer,
66
re_key=r""".*\bMain\.eval\(["']""")
0 commit comments