-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Double input to broadcasted group #623
Comments
Facing the same issue as described above. |
It's so inconvenient. |
sudo vim /usr/bin/terminator
# as-is
username = pwd.getpwuid(os.getuid()).pw_name
ibus_running = [p for p in psutil.process_iter() if p.name() == 'ibus-daemon' and p.username() == username]
ibus_running = len(ibus_running) > 0
if ibus_running:
os.environ['IBUS_DISABLE_SNOOPER']='1' # edit here
# to-be
username = pwd.getpwuid(os.getuid()).pw_name
ibus_running = [p for p in psutil.process_iter() if p.name() == 'ibus-daemon' and p.username() == username]
ibus_running = len(ibus_running) > 0
if ibus_running:
os.environ['IBUS_DISABLE_SNOOPER']='0' # edit here |
This didn't fix the issue for me on 22.04.1 with GNOME 42.2. |
Also seeing this on Fedora 35 with Plasma 5.24.4 and terminator-2.1.1-3.fc35.noarch.rpm. |
It seems to be solved only in special cases. My case is also 22.04.1 with GNOMW 42.4, |
should be fixed by #674 |
Hi @mattrose , this is issue still occurs:
Let me know is there something else you need to know Edit: |
Yeah, this is a bug in ibus, and and terminator is not the only program affected |
This worked for me using GNOME Shell 3.36.9 on Ubuntu 20.04 |
Not fixed, issue is still here... |
This is not an issue with terminator, but a bug in ibus. |
For the next person that finds this via Since I have no knowledge or interest in |
I have tested a workaround:
|
@mattrose it took me a while to read through all of the duplicating tickets of this problem and the "possible solutions" -- most of which did not work. The only one that actually work was what @MMI suggests - |
This bug is not necessarily in ibus itself, but in some of the language plugins. It has been reported multiple times |
Still present with |
Describe the bug
When using multiple split panes and broadcasting to a group, the group members receive double the input sent from the selected pane. Screenshots attached below.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Each pane receiving keystrokes from the selected group member should only receive the correct input, rather than double.
Screenshots
Desktop (please complete the following information):
Additional context
Using latest version of terminator: 2.1.1
Config file (changed file extension from none to .txt because this form wouldn't accept as-is):
config.txt
The text was updated successfully, but these errors were encountered: