From: Mark Wooding Date: Sat, 15 Jul 2017 00:05:43 +0000 (+0100) Subject: dot/ipython-config.py: Go back to traditional completion display. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/d4d0708511d184ab3211ac72a33bee1e7fedeca0 dot/ipython-config.py: Go back to traditional completion display. IPython has this new default completion display where it shows a tiny fraction of the available completions in a postage stamp. I'm not sure why this is meant to be better. It's the sort of thing IDEs do, but it seems daft to me. --- diff --git a/dot/ipython-config.py b/dot/ipython-config.py index e4339f5..63e7de4 100644 --- a/dot/ipython-config.py +++ b/dot/ipython-config.py @@ -11,3 +11,4 @@ c.InteractiveShell.colors = 'Linux' c.TerminalIPythonApp.display_banner = False c.TerminalInteractiveShell.confirm_exit = False +c.TerminalInteractiveShell.display_completions = 'readlinelike'