ivanov / vim-ipython

A two-way integration between Vim and IPython 0.11+
http://github.com/ivanov/vim-ipython
1.04k stars 163 forks source link

ipython console display #112

Open shaunpatel opened 10 years ago

shaunpatel commented 10 years ago

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?

januz commented 9 years ago

I was wondering, too, whether this is possible now?

nheijermans commented 9 years ago

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.

wmvanvliet commented 8 years ago

You should put

c.ConsoleWidget.include_other_output = True

in your jupyter_config.py

michaelfresco commented 6 years ago

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?