##// END OF EJS Templates
Added display_completions_in_columns option.
Jonathan Slenders -
Show More
@@ -134,6 +134,11 b' class TerminalInteractiveShell(InteractiveShell):'
134 134 term_title = Bool(True, config=True,
135 135 help="Automatically set the terminal title"
136 136 )
137
138 display_completions_in_columns = Bool(False, config=True,
139 help="Display a multi column completion menu.",
140 )
141
137 142 def _term_title_changed(self, name, new_value):
138 143 self.init_term_title()
139 144
@@ -289,9 +294,9 b' class TerminalInteractiveShell(InteractiveShell):'
289 294 'get_prompt_tokens':self.get_prompt_tokens,
290 295 'get_continuation_tokens':self.get_continuation_tokens,
291 296 'multiline':True,
297 'display_completions_in_columns': self.display_completions_in_columns,
292 298 }
293 299
294
295 300 def _update_layout(self):
296 301 """
297 302 Ask for a re computation of the application layout, if for example ,
General Comments 0
You need to be logged in to leave comments. Login now