You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using prompt_toolkit v1.0.13 (via IPython 5.2.2) on Ubuntu, and ctrl-z is inserting '^Z' instead of suspending the active process.
I experimented with the prompt_toolkit code a bit, and it seems that in key_binding/bindings/basic.py:
load_basic_system_bindings() is called
suspend_to_background_supported() does return True
but
for some reason the Control-Z event handler registered in load_basic_system_bindings() is never called (instead the one in registered in load_basic_bindings() is always called).