mac 快捷键设置 常用本事

[复制链接]
发表于 2026-2-1 08:40:03 | 显示全部楼层 |阅读模式
目次
常见干系快捷键(在 macOS 默认终端中同样实用):
mac体系预览图片 ,切换下一张
mac 键盘 快捷键 Ctrl 键
步调打开体系偏好设置:
进入键盘设置:
修改修饰键:
Karabiner-Elements 软件设置快捷键:
设置映射规则(两种方式):
方法 A:快速设置(复制已有规则)


常见干系快捷键(在 macOS 默认终端中同样实用):

利用快捷键跳转到行首Ctrl + A跳转到行尾Ctrl + E删除光标前一个单词Ctrl + W删除整行Ctrl + U清屏Ctrl + L向前移动一个单词Esc + B向后移动一个单词Esc + F mac体系预览图片 ,切换下一张

mac体系按空格预览图片大概视频,
上下左右键举行切换,按宫格视窗,可以举行上下左右切换,
按文件列心情势,只能上下键切换视频大概图片。

mac 键盘 快捷键 Ctrl 键

mac体系 usb键盘和mac电脑自带键盘次序不划一,下面方法设置和mac自带键盘次序划一
要让外接键盘的 Ctrl 键与 Mac 自带键盘的 Ctrl 键功能划一,可以通过 macOS 体系中的键盘设置来完成此利用。

  • 步调打开体系偏好设置

    • 点击屏幕左上角的 苹果图标(Apple logo),然后选择 体系设置(System Settings)。

  • 进入键盘设置

    • 在体系设置中,点击 键盘

  • 修改修饰键

    • 在键盘设置中,找到并点击 修饰键(Modifier Keys)选项,把Control 和Command键盘交换。


  • 选择外接键盘

    • 在修饰键的设置中,起首确认你选择的是外接键盘而不是内置键盘。
    • 下拉菜单选择USB键盘。

  • 更改 Ctrl 键举动
        我是把Ctrl键和Command 键功能交换后,使用正常了。


  • 确保 Ctrl 键的举动是精确的,即它与 Mac 内置键盘上的 Ctrl 键举动划一。通常,你不须要做太多更改,只需确认 Ctrl 键设置为 Control。
  • 应用更改

    • 完成后点击 确定(OK)以生存设置。

Karabiner-Elements 软件设置快捷键:


  • 打开官网:https://karabiner-elements.pqrs.org/
  • 下载并安装 Karabiner-Elements。
  • 安装后打开「Karabiner-Elements」应用。

设置映射规则(两种方式):

方法 A:快速设置(复制已有规则)


  • 打开 Karabiner → 点左侧的 Complex Modifications。
  • 点击「Add Rule」按钮。
  1. {
  2.   "description": "Map Windows-style Control shortcuts to macOS Command",
  3.   "manipulators": [
  4.     {
  5.       "type": "basic",
  6.       "from": {
  7.         "key_code": "c",
  8.         "modifiers": {
  9.           "mandatory": ["control"],
  10.           "optional": ["any"]
  11.         }
  12.       },
  13.       "to": [
  14.         {
  15.           "key_code": "c",
  16.           "modifiers": ["command"]
  17.         }
  18.       ]
  19.     },
  20.     {
  21.       "type": "basic",
  22.       "from": {
  23.         "key_code": "v",
  24.         "modifiers": {
  25.           "mandatory": ["control"],
  26.           "optional": ["any"]
  27.         }
  28.       },
  29.       "to": [
  30.         {
  31.           "key_code": "v",
  32.           "modifiers": ["command"]
  33.         }
  34.       ]
  35.     },
  36.     {
  37.       "type": "basic",
  38.       "from": {
  39.         "key_code": "x",
  40.         "modifiers": {
  41.           "mandatory": ["control"],
  42.           "optional": ["any"]
  43.         }
  44.       },
  45.       "to": [
  46.         {
  47.           "key_code": "x",
  48.           "modifiers": ["command"]
  49.         }
  50.       ]
  51.     },
  52.     {
  53.       "type": "basic",
  54.       "from": {
  55.         "key_code": "z",
  56.         "modifiers": {
  57.           "mandatory": ["control"],
  58.           "optional": ["any"]
  59.         }
  60.       },
  61.       "to": [
  62.         {
  63.           "key_code": "z",
  64.           "modifiers": ["command"]
  65.         }
  66.       ]
  67.     },
  68.     {
  69.       "type": "basic",
  70.       "from": {
  71.         "key_code": "a",
  72.         "modifiers": {
  73.           "mandatory": ["control"],
  74.           "optional": ["any"]
  75.         }
  76.       },
  77.       "to": [
  78.         {
  79.           "key_code": "a",
  80.           "modifiers": ["command"]
  81.         }
  82.       ]
  83.     },
  84.     {
  85.       "type": "basic",
  86.       "from": {
  87.         "key_code": "s",
  88.         "modifiers": {
  89.           "mandatory": ["control"],
  90.           "optional": ["any"]
  91.         }
  92.       },
  93.       "to": [
  94.         {
  95.           "key_code": "s",
  96.           "modifiers": ["command"]
  97.         }
  98.       ]
  99.     },
  100.     {
  101.       "type": "basic",
  102.       "from": {
  103.         "key_code": "f",
  104.         "modifiers": {
  105.           "mandatory": ["control"],
  106.           "optional": ["any"]
  107.         }
  108.       },
  109.       "to": [
  110.         {
  111.           "key_code": "f",
  112.           "modifiers": ["command"]
  113.         }
  114.       ]
  115.     },
  116.     {
  117.       "type": "basic",
  118.       "from": {
  119.         "key_code": "n",
  120.         "modifiers": {
  121.           "mandatory": ["control"],
  122.           "optional": ["any"]
  123.         }
  124.       },
  125.       "to": [
  126.         {
  127.           "key_code": "n",
  128.           "modifiers": ["command"]
  129.         }
  130.       ]
  131.     },
  132.     {
  133.       "type": "basic",
  134.       "from": {
  135.         "key_code": "t",
  136.         "modifiers": {
  137.           "mandatory": ["control"],
  138.           "optional": ["any"]
  139.         }
  140.       },
  141.       "to": [
  142.         {
  143.           "key_code": "t",
  144.           "modifiers": ["command"]
  145.         }
  146.       ]
  147.     },
  148.     {
  149.       "type": "basic",
  150.       "from": {
  151.         "key_code": "w",
  152.         "modifiers": {
  153.           "mandatory": ["control"],
  154.           "optional": ["any"]
  155.         }
  156.       },
  157.       "to": [
  158.         {
  159.           "key_code": "w",
  160.           "modifiers": ["command"]
  161.         }
  162.       ]
  163.     }
  164.   ]
  165. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!qidao123.com:ToB企服之家,中国第一个企服评测及软件市场,开放入驻,技术点评得现金

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
回复

使用道具 举报

登录后关闭弹窗

登录参与点评抽奖  加入IT实名职场社区
去登录
快速回复 返回顶部 返回列表