##// END OF EJS Templates
autoreformat with darker
Matthias Bussonnier -
Show More
@@ -322,19 +322,20 b' 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 auto_suggest=AutoSuggestFromHistory(),
325 auto_suggest=AutoSuggestFromHistory(),
326 editing_mode=editing_mode,
326 editing_mode=editing_mode,
327 key_bindings=key_bindings,
327 key_bindings=key_bindings,
328 history=history,
328 history=history,
329 completer=IPythonPTCompleter(shell=self),
329 completer=IPythonPTCompleter(shell=self),
330 enable_history_search = self.enable_history_search,
330 enable_history_search=self.enable_history_search,
331 style=self.style,
331 style=self.style,
332 include_default_pygments_style=False,
332 include_default_pygments_style=False,
333 mouse_support=self.mouse_support,
333 mouse_support=self.mouse_support,
334 enable_open_in_editor=self.extra_open_editor_shortcuts,
334 enable_open_in_editor=self.extra_open_editor_shortcuts,
335 color_depth=self.color_depth,
335 color_depth=self.color_depth,
336 tempfile_suffix=".py",
336 tempfile_suffix=".py",
337 **self._extra_prompt_options())
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