Show More
@@ -322,19 +322,20 class TerminalInteractiveShell(InteractiveShell): | |||
|
322 | 322 | |
|
323 | 323 | self.pt_loop = asyncio.new_event_loop() |
|
324 | 324 | self.pt_app = PromptSession( |
|
325 |
|
|
|
326 |
|
|
|
327 |
|
|
|
328 |
|
|
|
329 |
|
|
|
330 |
|
|
|
331 |
|
|
|
332 |
|
|
|
333 |
|
|
|
334 |
|
|
|
335 |
|
|
|
336 |
|
|
|
337 |
|
|
|
325 | auto_suggest=AutoSuggestFromHistory(), | |
|
326 | editing_mode=editing_mode, | |
|
327 | key_bindings=key_bindings, | |
|
328 | history=history, | |
|
329 | completer=IPythonPTCompleter(shell=self), | |
|
330 | enable_history_search=self.enable_history_search, | |
|
331 | style=self.style, | |
|
332 | include_default_pygments_style=False, | |
|
333 | mouse_support=self.mouse_support, | |
|
334 | enable_open_in_editor=self.extra_open_editor_shortcuts, | |
|
335 | color_depth=self.color_depth, | |
|
336 | tempfile_suffix=".py", | |
|
337 | **self._extra_prompt_options() | |
|
338 | ) | |
|
338 | 339 | |
|
339 | 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