美文网首页
Mac 输入法设置

Mac 输入法设置

作者: rEload | 来源:发表于2019-03-11 15:22 被阅读0次
  1. 安装 Karabiner

Karabiner - Software for macOS

2.输入法设置成 德沃夏克 和 简体拼音

  1. Karabiner 将 Capslocks 替换成 left_control

  2. 设置shift单独按时切换输入法

{
  "title": "Change caps_lock key",
  "rules": [
    {
      "description": "Post left_shift if caps_loc is pressed alone.",
      "manipulators": [
        {
          "type": "basic",
          "from": { "key_code": "left_shift", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "left_shift" } ],
          "to_if_alone": [ { "key_code": "caps_lock" } ] } ]
    }
  ]
}

参考

karabiner.json Reference Manual - Karabiner - Software for macOS

相关文章

网友评论

      本文标题:Mac 输入法设置

      本文链接:https://www.haomeiwen.com/subject/jqlbpqtx.html