Make AutoHotKey ignore Alt as menu key

前端 未结 7 1909
情歌与酒
情歌与酒 2021-02-04 11:14

I\'m trying to use autohotkey to simulate elements of Mac keyboard on a PC (Windows) keyboard. My muscle memory reaches for the Command key for simple tasks like copying and pas

7条回答
  •  感情败类
    2021-02-04 11:53

    you could also swap the two buttons.

    Something like:

    LAlt::LCtrl
    LCtrl::LAlt
    

    In the limited testing I did, it works, but you might need to relearn some of your window key shortcuts. It basically just swaps the two buttons.

提交回复
热议问题