用autohotkey统一Mac下VirtualBox的Windows复制粘贴键

  1. 修改Virtual box的默认Host Key,让它为右侧的Command键。(菜单:Virtualbox->Preferences->Input)
  2. 在虚拟机的windows里下载并安装 autohotkey https://autohotkey.com/download/
  3. 创建一个文本文件:MAC复制件同步.ahk,复制并填写内容如下:
    #SingleInstance force
    #a::Send ^a ; 全选
    #r::Send ^r ; 刷新
    #z::Send ^z ; 撤销
    #y::Send ^y ; 恢复上一步操作
    #f::Send ^f ; 查找
    #c::Send ^c ; 复制
    #x::Send ^x ; 剪切
    #v::Send ^v ; 粘贴
    #t::Send ^t ; 新标签Chrome
    #s::Send ^s ; 保存
    #space::^space ; 输入法
    LWin & Tab::AltTab ; 切换任务
  4. 保存脚本,双击运行脚本。

转载于:https://www.cnblogs.com/eYeah/p/9516571.html

你可能感兴趣的:(用autohotkey统一Mac下VirtualBox的Windows复制粘贴键)