##// END OF EJS Templates
Merge pull request #9738 from takluyver/i9728...
Thomas Kluyver -
r22700:58a2cf45 merge
parent child Browse files
Show More
@@ -173,16 +173,6 b' class TerminalInteractiveShell(InteractiveShell):'
173 help="Automatically set the terminal title"
173 help="Automatically set the terminal title"
174 ).tag(config=True)
174 ).tag(config=True)
175
175
176 # Leaving that for beta/rc tester, shoudl remove for 5.0.0 final.
177 display_completions_in_columns = Bool(None,
178 help="DEPRECATED", allow_none=True
179 ).tag(config=True)
180
181 @observe('display_completions_in_columns')
182 def _display_completions_in_columns_changed(self, new):
183 raise DeprecationWarning("The `display_completions_in_columns` Boolean has been replaced by the enum `display_completions`"
184 "with the following acceptable value: 'column', 'multicolumn','readlinelike'. ")
185
186 display_completions = Enum(('column', 'multicolumn','readlinelike'), default_value='multicolumn').tag(config=True)
176 display_completions = Enum(('column', 'multicolumn','readlinelike'), default_value='multicolumn').tag(config=True)
187
177
188 highlight_matching_brackets = Bool(True,
178 highlight_matching_brackets = Bool(True,
General Comments 0
You need to be logged in to leave comments. Login now