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 want to make menu key + arrows switch, close and open tabs in firefox. My idea was to make something like this:
[firefox*]
# Menu Key to F14
compose = f14
# Open new tab
f14+up = leftcontrol+t
# Close the current tab
f14+down = leftcontrol+w
# Switch to the tab on the left
f14+left = leftcontrol+pageup
# Switch to the tab on the right
f14+right = leftcontrol+pagedown
But I wasn't able to figure out how to make chords output multiple keys (especially considering left control is a modifier). Additionally no chord worked with f14 binded to compose. Can someone help me get this to work?
The text was updated successfully, but these errors were encountered:
# Create menu key layer (named 'test')
# which turns up arrow to ctrl+c etc.
compose = layer(test)
[test]
up = C-t
down = C-w
left = C-pageup
right = C-pagedown
The only issue thing I wasn't able to do is make it app specific, apparently layers can only be defined in the main config file.
I want to make menu key + arrows switch, close and open tabs in firefox. My idea was to make something like this:
But I wasn't able to figure out how to make chords output multiple keys (especially considering left control is a modifier). Additionally no chord worked with f14 binded to compose. Can someone help me get this to work?
The text was updated successfully, but these errors were encountered: