jupyter_console
jupyter_console copied to clipboard
Jupyter Terminal Console
This makes the handling of the prompt and the display of external inputs and outputs less messy, ensuring it looks more like something that was run in the actual console...
The level of brightness of the number present in the prompt give me eye strain since its brightness is too high and I am wondering if there is a way...
This PR adds the option to get autosuggestions based on the [AutoSuggestFromHistory](https://python-prompt-toolkit.readthedocs.io/en/master/pages/reference.html#prompt_toolkit.auto_suggest.AutoSuggestFromHistory) class from `prompt_toolkit` as is also done in `IPython` [here](https://github.com/ipython/ipython/blob/a418f38c4f96de1755701041fe5d8deffbf906db/IPython/terminal/interactiveshell.py#L200). The `NavigableAutoSuggestFromHistory` does not seem to work as...
This PR adds the option of having a modal cursor when using the `vi` mode. It does this by setting the `cursor` option of the `PromptSession` equal to an instance...
With the `vi` options ```python c.ZMQTerminalInteractiveShell.editing_mode = 'vi' c.ZMQTerminalInteractiveShell.prompt_includes_vi_mode = True ``` specified in `jupyter_console_config.py`, the terminal output, in all `vi` modes, looks like:  The reason for the error...
Similar to my other issue #287 Python3.11 added the concept of notes on exceptions that are displayed after the exception value, in new lines (one per message). ```python >>> ex...
Python3.11 added the concept of exception groups and this is how the traceback is displayed on normal Python console: ```python >>> eg = ExceptionGroup('foo', [TypeError(10), ValueError(20)]) >>> raise eg +...
Hi, this setting takes effect: ipython --InteractiveShell.separate_in="" This doesn't: jupyter console --InteractiveShell.separate_in="" How can I remove the blank line before `In [ ]`?
Launch a console (A) ```bash jupyter console ``` Launch another (B) and connect it to it ```bash jupyter console --existing ``` Enter in (B): `a = input("test: ")` Prompt shows...