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
Context: I'm using GKT4 so I have to use the xclip or xsel clipboards, my app monitors the clipboard and crashes anytime I try to use CTRL+C to copy text.
The reason and fix are straightforward, subprocess.Popen is passing through keyboard signals, so CTRL+C is killing the clipboard application being called.
Context: I'm using GKT4 so I have to use the xclip or xsel clipboards, my app monitors the clipboard and crashes anytime I try to use CTRL+C to copy text.
The reason and fix are straightforward, subprocess.Popen is passing through keyboard signals, so CTRL+C is killing the clipboard application being called.
The fix is outlined here: https://stackoverflow.com/questions/5045771/python-how-to-prevent-subprocesses-from-receiving-ctrl-c-control-c-sigint
Gist is to basically just add an intercept of the signals into Popen calls, which will keep the CTRL+C from being passed through.
The text was updated successfully, but these errors were encountered: