美文网首页
Karabiner 快捷键输入特定文本 shortcut ins

Karabiner 快捷键输入特定文本 shortcut ins

作者: 小强开学前 | 来源:发表于2023-01-14 15:57 被阅读0次

1. 打开配置文件

终端输入open ~/.config/karabiner后使用想要的编辑器打开

2. 插入配置

profiles ->complex_modifications->rules下插入

                    {
                        "description": "Press Option+Command+0 to insert Hello",
                        "manipulators": [
                            {
                                "from": {
                                    "key_code": "0",
                                    "modifiers": {
                                        "mandatory": [
                                            "left_option",
                                            "left_command"
                                        ],
                                        "optional": [
                                            "any"
                                        ]
                                    }
                                },
                                "to": [
                                    {
                                        "key_code": "h",
                                        "modifiers": [
                                            "left_shift"
                                        ]
                                    },
                                    {
                                        "key_code": "e"
                                    },
                                    {
                                        "key_code": "l"
                                    },
                                    {
                                        "key_code": "l"
                                    },
                                    {
                                        "key_code": "o"
                                    }
                                ],
                                "type": "basic"
                            }
                        ]
                    },

相关文章

网友评论

      本文标题:Karabiner 快捷键输入特定文本 shortcut ins

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