tags:

views:

49

answers:

1

Hello,

Is there any way to configure the iPython shell so that it does not produce a blank line between each command history? This would significantly increase the amount of historic I would be able to see on my screen.

Thanks in advance,

Thomas

A: 

I have this in my $HOME/.ipython/ipythonrc:

prompt_in1 'In [\#]: '
prompt_in2 '   .\D.: '
prompt_out 'Out[\#]: '
Alok