Open shaunpatel opened 10 years ago
I was wondering, too, whether this is possible now?
Yes, it is possible. Note that before the output from vim-ipython will not show up in the ipython consoles until you press the Enter key in the console, though.
You should put
c.ConsoleWidget.include_other_output = True
in your jupyter_config.py
It really sucks that we have to press enter. ("Outputs are not displayed until enter is pressed.")
After a lot of searching I put this is my ~/.jupyter/jupyter_console_config.py
c.ZMQTerminalInteractiveShell.include_other_output = True
c.ConsoleWidget.include_other_output = True
And it kinda-works. Still it sucks that we have to press enter with jupyter console
to get the remote lines to show up. I have to say that jupyter qtconsole
works nicer in general.
Any suggestions?
I am new to vim-ipython but was wondering if the fix (ipython/ipython#1873) allows the possibility of having the ipython console (or qtconsole) display the input and output commands?