diff --git a/IPython/terminal/embed.py b/IPython/terminal/embed.py index 1d16711..892a6af 100644 --- a/IPython/terminal/embed.py +++ b/IPython/terminal/embed.py @@ -70,6 +70,11 @@ class InteractiveShellEmbed(TerminalInteractiveShell): display_banner = CBool(True) exit_msg = Unicode() + # When embedding, by default we don't change the terminal title + term_title = Bool(False, + help="Automatically set the terminal title" + ).tag(config=True) + _inactive_locations = set() @property