Skip to content
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

1+1+2+3+4+1 outputs 4321 #798

Closed
RickAndTired opened this issue Oct 29, 2023 · 3 comments
Closed

1+1+2+3+4+1 outputs 4321 #798

RickAndTired opened this issue Oct 29, 2023 · 3 comments

Comments

@RickAndTired
Copy link

To help people understand your problems, run sudo pkill -f input-remapper && input-remapper-gtk -d, reproduce the problem and then share the output here.
input-remapper-debug1.txt

In Gnome-text-editor
1+1+2+3+4+1 outputs 4321

In most other programs
1+1+2+3+4+1 outputs 1234

How can I have Input-Remapper output 112341?

Side question:
How can I press multiple keys within a macro?
Alt+down wait Alt+Shift+Ctrl+4
I tried this, but it won't let me mix macros and +
modify(Alt_L, key(down)).wait(500)
Alt_L+Shift_L+Control_L+4

@jonasBoss
Copy link
Collaborator

the + is meant for key combinations. so your macro presses all the keys at the same time. But you want them to be pressed all separately after each other.

You need to chain the key macro: key(1).key(1).key(2).key(3)

@RickAndTired
Copy link
Author

the + is meant for key combinations. so your macro presses all the keys at the same time. But you want them to be pressed all separately after each other.

You need to chain the key macro: key(1).key(1).key(2).key(3)

Thank you, I'll close this issue, but if you have an answer to this I'd greatly appreciate it
How could I do a four button combo within a macro?
Alt_L+Shift_L+Control_L+4

@jonasBoss
Copy link
Collaborator

exactly like you suggested:
Alt_L+Shift_L+Control_L+4

If that does not work open a new issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants