The copy and paste shortcut keys on your computer are Ctrl+C and Ctrl+V, but some users may wish to customize these shortcut keys. PHP editor Apple will introduce how to modify the copy and paste shortcut keys to help you complete your work efficiently. Read on to learn detailed steps to easily customize your shortcut keys.
Modify the Windows copy and paste shortcut key - a computer usage tip that will never come back after using it twice
On Apple Mac computers, the shortcut key for copy and paste is command + c
Because the two keys are relatively close together. It can be easily operated with your thumb and index finger.
On a Windows computer, the shortcut key for copying and pasting is: Ctrl + c
The two keys are too far apart. It is very inconvenient for people who often use copy and paste shortcut keys. Especially those who are used to Apple computer keyboards.
We can use the software called autoHotKey to change the copy and paste shortcut keys on the Windows system to Alt+c and Alt+v.
https://www.autohotkey.com/
Click "download", then click "download current version" to download the software
The website has 1.3 million monthly visits, this There are still quite a lot of people using the software.
After downloading and installing: you can choose the first item
After the installation is completed, select the third item: Run the program
You will enter this interface
On the desktop, create a new autohotkey script : Right-click → New → AutoHotKey Script
For future convenience, change the name of this file to "copy"
Right-click on the newly created file and select "edit script"
Paste this code and save it document.
1. #NoTrayIcon2. !c::3. send,^{c} 4. return5. !v::6. send,^{v}7. return8. !x::9. send,^{x}10. return11. F8::12. msgbox,4100,退出成功,热键退出!,113. exitapp
The above is the detailed content of How to modify the copy and paste shortcut keys on the computer?. For more information, please follow other related articles on the PHP Chinese website!