Tab completion in IPython and Jupyter-console is practically unusable because the text is so difficult to read.
Here's what I've tried:
ipython profile create
.ipython_config.py
I set c.InteractiveShell.colors = 'NoColors'
. That made all my text white but the completion text didn't change.I'm using the following software:
I found a solution. It seems my terminal is using 24bit color and that must be interacting poorly with the defaults of IPython which defaults to 256 colors. You can test your terminal with this command:
printf "\x1b[38;2;255;100;0mTRUECOLOR\x1b[0m\n"
If you see 'TRUECOLOR', then your terminal supports true color.
For IPython, edit ~/.ipython/profile_default/ipython_config.py
; for Jupyter, edit ~/.jupyter/jupyter_console_config.py
. Then edit: c.TerminalInteractiveShell.true_color = True
. Now the completion text is readable.