Celeb Glow
updates | March 11, 2026

Emulating the right Ctrl key on MacBook Pro keyboard lacking an actual right Ctrl key

I need to use the right Ctrl key in a certain application, but my keyboard doesn't have one.

The left Ctrl key has an entirely different function in this case. How can I emulate the right Ctrl key, for example by pressing the right Alt button?

I tried the “Right Option acts as Control” feature of DoubleCommand, but sadly, that causes the right Alt key to emulate the left Ctrl key instead of the right Ctrl. Aaargh!

Any ideas?

6 Answers

I found the solution: Karabiner has an Option_R to Control_R feature

2

Control + Option worked for me. Here's what you can do.

  • Go to Keyboard Preferences on your mac
  • Check the box that says :

    Use F1, F2, etc. keys as standard function keys

OR

  • Else You have to Press Fn + Control + Option every time.

This little app claims to show the keycodes (I haven't got a mac to try it out on) your looking for some way of generating keycode 109 I think. You could see if any combination produces that.

This question is quite old, but I have the same problem on a new macbook pro. I found Mathias Bynens' answer and installed Karabiner, but I would like not to remap optionn to control because I need the right option key to type all special characters in the left-hand side of the keyboard (which I use quite a lot).

My solution was to remap the left arrow key to control using the "Simple modifications" pane on Karabiner (left_arrow to right_control), and then mapped control + right_arrow to left_arrow using the complex modification below.

So now right control is where my fingers expect it to be, next to option and command, and to use right arrow I press and hold the actual right arrow key (i.e. right control) and then use the left arrow key.

Here is the complex modification (to use it, just copy it in a new file in the configuration directory of Karabiner under assets/complex_modifications).

{ "title": "Ctrl + right arrow to left arrow", "rules": [ { "description": "Ctrl + right arrow to left arrow", "manipulators": [ { "from": { "key_code": "right_arrow", "modifiers": { "mandatory": [ "right_control" ], "optional": [ "caps_lock", "option", "command", "shift", "fn" ] } }, "to": [ { "key_code": "left_arrow" } ], "type": "basic" } ] } ]
}

This worked for me:

fn + Right cmd + (left arrow)

Fn + Enter (Return) works on my Macbook pro for right-ctrl

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy