How to use fn with arrow keys? #2037
-
I would like to set prev next space keys on the fn left and right arrows. I came up with something like this: It is not working when I press the fn + left arrow key. But works when I press ONLY the left arrow key. Is that intended behaviour? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
The Edit:
|
Beta Was this translation helpful? Give feedback.
-
It is possible with bettertouchtools, but I highly suggest not to, because fn+arrow keys are the standard keys for HOME/END/PAGE UP/PAGE DOWN, or other navigation in apps. |
Beta Was this translation helpful? Give feedback.
-
Moreover, just as information, you actually can redefine keyboard keys by macos itself with hidutil. Very useful for custom keyboard layouts as described here. And here you can easily generate a configuration plist file. Don't forget to add /private/etc/sudoers.d/hidutil (the same way you do it for yabai's scripting additions) on latest macos systems, otherwise it won't work. |
Beta Was this translation helpful? Give feedback.
The
fn
modifier is implicitly set in thearrow
keys events (by macOS), so it is not possible to use it as a modifier with the arrow keys.Edit: