78

I use Windows at work and a Mac at home. One of the biggest issues is the difference between the copy paste shortcuts on Windows vs the Mac i.e. Ctrl + C & Ctrl + V on Windows and on the Mac its Command + C and Command + V. Invariably its hard because of learnt motor skills where my hand always shapes itself to the Windows Ctrl + C configuration(I have been using Windows longer)

I would like to remap the Copy and Paste to the Fn + C and Fn + V on the Mac. Why? Because the Fn key is actually the key that corresponds to where the Ctrl key is on Windows keyboards and since its the last edge key its easy to find. I have tried Double Command but it doesn't seem to have an option of turning Fn to the Command key.

14 Answers 14

14

I was able to get this to work by using a combination of DoubleCommand and jtbandes hint from here. First check the function key acts as control key box in Double command. Then save the file ~/Library/KeyBindings/DefaultKeyBinding.dict with the contents

{"^c" = "copy:";}
{"^v" = "paste:";}
{"^x" = "cut:";}

After you logout and log back in you should be able to use fn-c to copy etc. There are obvious drawbacks to this approach. You have to explicitly define every command you want to use fn for and mapping to control and then fn is really hacky. Unfortunately I wasn't able to get it to work another way. At first I thought you might be able to select both the "command key acts as control key" check box and the "fn key acts as control key" but that didn't seem to work. Ditto for changing to control with Alex's method above. I was also unable to find the modifier for assigning commands to fn, and Apple's documentation seems to indicate that it's done at a lower level than keybinding has access to. If someone knows a better way of doing this I would love to see it.

2
  • I'll accept this answer, but I'm still looking for a silver bullet solution..
    – Linzdp
    Sep 1, 2009 at 15:01
  • Not work for me in Mac os 10.11
    – demon101
    Aug 12, 2016 at 8:23
160

Go System Preference > Keyboard > keyboard shortcuts and set Application Keyboard Shortcuts > All Applications

Add shortcut

Copy ^C

Undo ^Z

Redo ^⇧Z

Cut ^X

Paste ^V

Select All ^A

Done :)

21
  • 5
    Read the question to the end.
    – Daniel Beck
    Dec 1, 2011 at 9:47
  • 10
    This is the answer. Works on Mac, RDP, VMWare Fusion and Parallels. Oct 15, 2012 at 12:11
  • 5
    The question asked for the fn key, isn't this only for control?
    – Jon-Eric
    Feb 7, 2013 at 5:14
  • 11
    In Mavericks, those shortcuts can be added here: Launchpad -> System Preferences -> Keyboard -> Shortcuts tab -> select App Shortcuts in the left panel -> click the + icon. Another shortcut to add: Save ^S. Also, the above solution will not work in programs that change the menu text, like how Sublime Text changes the entry for “Undo"
    – Drew
    Apr 10, 2014 at 1:08
  • 9
    OMG... my life is going to be soooo much better now!
    – TimC
    Sep 7, 2017 at 6:03
14

You could try to map Command to the Control key, and vice-versa. It's much easier to do and, in my opinion, is almost identical to Windows keyboards.

Just go to System Preferences -> Keyboard & Mouse -> Keyboard. On the lower left side is a button, Modifier Keys... Just switch Control and Command around.

4
  • 3
    This has a bad effect if you RDP into Windows.
    – Alex
    Mar 28, 2012 at 14:25
  • 1
    This is also not a good solution if you use a lot of Java apps in Mac (which typically use the <kbd>Control</kdb> key as it's used in windows) or if you use Terminal a lot, which also uses the <kbd>Control</kdb> in more traditional ways.
    – Jherico
    Jun 25, 2012 at 17:21
  • 1
    This also has the unfortunate effect of swapping ctrl+tab and command+tab. Sep 19, 2013 at 14:43
  • 2
    This also totally breaks Vim.
    – Dan
    Nov 2, 2017 at 19:46
10

1 - Go to "apple"
2 - Go to "system preferences"
3 - Go to "keyboard"
4 - On "keyboard", go to the "keyboard" tab
5 - Go to "modifier keys.."
6 - Change the "Control ( ) Key" drop down box to "Command"
7 - Click "ok"
Done!

Now:

Control+C = copy
Control+V = paste, and
Control+Z = undo

3

This is a more complete list based on the awesome answer of arttioz

Go System Preference > Keyboard > keyboard shortcuts and set Application Keyboard Shortcuts > All Applications

Add shortcut

  • Copy ^C

  • Undo ^Z

  • Redo Shift-^Z

  • Cut ^X

  • Paste ^V

  • Select All ^A

  • Find... ^F

You might also want to add some application specific ones, like for Google Chrome:

  • Paste and Match Style Shift-^V

  • Use Selection for Find ^E

  • Find Next ^G

  • Find Previous Shift-^-G

You can find existing menu key shortcuts in an application's menu bar and rebind all of them using the exact names displayed there. You can also verify the change there.

2

Try IronAHK. It's a complete rewrite of AutoHotkey which you can use to remap keys and make shortcuts.

2
  • It's not a complete rewrite - unfortunately far from it. It may do what the OP wants however.
    – Matthew
    Sep 14, 2012 at 22:27
  • 1
    Your link is broken
    – deltree
    May 26, 2015 at 15:49
2

Maybe not as easy as using 3rd party tooling, but in 10.6 Snow Leopard one can use the following AppleScript to send the existing Command-C or Command-V keys, and then add that script to a key of your choice.

Something like:

tell application "System Events"
    keystroke "c" using {command down}
end tell

(This won't let you use the fn key though.)

2

There's an easier way as well

  1. Go to System Preferences -> Keyboard -> Keyboard tab -> Modifier keys

  2. Swap the Control and Cmd keys

  3. Select Ok

0
1

I use the arttioz way, do it with Application Shortcuts, but it have some problem.

If I switch language to Chinese, the Menu Title need to use the Chinese word. :-(

Example:

  • 拷貝 ^C
  • 還原/還原輸入 ^Z
  • 剪下 ^X
  • 貼上 ^V
  • 全選 ^A
1
  • I thought about this issue as soon as I read the solution.
    – jpierson
    Aug 28, 2015 at 3:21
1

Best solution is to install Karabiner.

After installation enable the Complex Modifications > PC Shortcuts List

https://pqrs.org/osx/karabiner/complex_modifications/#pc_shortcuts-list-group

3
  • Why do you think that your suggested app is the best solution? Have you tested yourself?
    – CaldeiraG
    Apr 20, 2018 at 12:09
  • Yes, for me this is the best solution to work with. I use it right now. I tried solutions above but they don't work out the way I need (as a former Windows guy).
    – Ton Snoei
    May 7, 2018 at 8:31
  • 2
    The best solution is to avoid Mac
    – Slava
    Nov 4, 2020 at 13:38
0

If you're using a desktop at work, you might want to try using command for a while. I've found my muscle memory now seems sensitive to the style of keyboard I'm typing on. It gets confused with laptops, though. And when I had to use the 1998 version of the Apple keyboard.

On the other hand, if you use a laptop, this is utterly irrelevant.

0

You can basically do any remapping you like with the application https://pqrs.org/osx/karabiner/

1
  • In case the link goes dead, this app's name is Karabiner, previously KeyRemap4MacBook
    – Andi Mohr
    Oct 23, 2015 at 10:12
0

image: added the shortcuts in mac preference

image: only partly works

I added the shortcut in mac preference, but only partly works, why?

1
  • Consider adding description of the steps you are taking in the screenshots.
    – Ulincsys
    May 4, 2019 at 4:29
0

How to make shortcuts on MAC like Windows (copy, paste, undo and find)?

The FN key is the best option to use for the shortcuts to be like in Windows

System Preferences -> Keyboard -> Keyboard tab -> Modifier keys (at bottom) -> Change the Globe/FN key to "Command".

Then the FN key functions like the Command key...

I found this a better (for me) answer for this.... the solutions offered were either too difficult to implement (for me) or not what i want.

You can also change the Command key to function like the Globe to not loose the functionality (though i rarely need it)

Hope it helps others! Stu

1
  • Note: the Fn location on the Mac is the same as the Ctrl location on Windows, thus the finger action is the same
    – Stuart
    May 6, 2023 at 15:24

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .