Show More
@@ -322,19 +322,20 class TerminalInteractiveShell(InteractiveShell): | |||||
322 |
|
322 | |||
323 | self.pt_loop = asyncio.new_event_loop() |
|
323 | self.pt_loop = asyncio.new_event_loop() | |
324 | self.pt_app = PromptSession( |
|
324 | self.pt_app = PromptSession( | |
325 |
|
|
325 | auto_suggest=AutoSuggestFromHistory(), | |
326 |
|
|
326 | editing_mode=editing_mode, | |
327 |
|
|
327 | key_bindings=key_bindings, | |
328 |
|
|
328 | history=history, | |
329 |
|
|
329 | completer=IPythonPTCompleter(shell=self), | |
330 |
|
|
330 | enable_history_search=self.enable_history_search, | |
331 |
|
|
331 | style=self.style, | |
332 |
|
|
332 | include_default_pygments_style=False, | |
333 |
|
|
333 | mouse_support=self.mouse_support, | |
334 |
|
|
334 | enable_open_in_editor=self.extra_open_editor_shortcuts, | |
335 |
|
|
335 | color_depth=self.color_depth, | |
336 |
|
|
336 | tempfile_suffix=".py", | |
337 |
|
|
337 | **self._extra_prompt_options() | |
|
338 | ) | |||
338 |
|
339 | |||
339 | def _make_style_from_name_or_cls(self, name_or_cls): |
|
340 | def _make_style_from_name_or_cls(self, name_or_cls): | |
340 | """ |
|
341 | """ |
General Comments 0
You need to be logged in to leave comments.
Login now