##// END OF EJS Templates
Merge pull request #9806 from michaelpacer/noncename...
Matthias Bussonnier -
r22723:0205d4f6 merge
parent child Browse files
Show More
@@ -173,7 +173,12 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 display_completions = Enum(('column', 'multicolumn','readlinelike'), default_value='multicolumn').tag(config=True)
176 display_completions = Enum(('column', 'multicolumn','readlinelike'),
177 help= ( "Options for displaying tab completions, 'column', 'multicolumn', and"
178 "'readlinelike'. These options are for `prompt_toolkit`, see `prompt_toolkit`"
179 "documentation for more information."
180 ),
181 default_value='multicolumn').tag(config=True)
177
182
178 highlight_matching_brackets = Bool(True,
183 highlight_matching_brackets = Bool(True,
179 help="Highlight matching brackets .",
184 help="Highlight matching brackets .",
General Comments 0
You need to be logged in to leave comments. Login now