From f18a60ebd11e385eff17b451c22c3237b107151f 2016-02-24 01:05:05 From: Matthias Bussonnier Date: 2016-02-24 01:05:05 Subject: [PATCH] 'Restore `...:` as continuation prompt ' --- diff --git a/IPython/terminal/ptshell.py b/IPython/terminal/ptshell.py index 4ad7047..8c73725 100644 --- a/IPython/terminal/ptshell.py +++ b/IPython/terminal/ptshell.py @@ -79,7 +79,7 @@ class TerminalInteractiveShell(InteractiveShell): def get_continuation_tokens(self, cli, width): return [ - (Token.Prompt, (' ' * (width - 2)) + ': '), + (Token.Prompt, (' ' * (width - 5)) + '...: '), ] def init_prompt_toolkit_cli(self):