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):