From: Mark Wooding Date: Thu, 23 Apr 2020 12:43:39 +0000 (+0100) Subject: dot/ipython-config.py: Prevent `IPython' from changing the terminal title. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/29b9501fa5527ba58e143f41e23a219ae5bad1dc dot/ipython-config.py: Prevent `IPython' from changing the terminal title. It doesn't have anything useful to say. --- diff --git a/dot/ipython-config.py b/dot/ipython-config.py index ac08c66..1a8c25b 100644 --- a/dot/ipython-config.py +++ b/dot/ipython-config.py @@ -18,6 +18,7 @@ c.InteractiveShell.colors = 'Linux' c.TerminalIPythonApp.display_banner = False c.TerminalInteractiveShell.confirm_exit = False c.TerminalInteractiveShell.display_completions = 'readlinelike' +c.TerminalInteractiveShell.term_title = False ## Syntax colouring. if PYG and getattr(PYG, 'token', None):