如何将Ctrl + E键绑定更改为F12

问题描述 投票:0回答:1

我今天安装了Sublime text 3。我也安装了emmet插件。

现在插件缩写命令按Ctrl + E按钮工作。

我想把它更改为F12,我的意思是我想每当我按下F12它就像按下Ctrl + E按钮一样

我经常搜索并尝试了很多方法,但我不能这样做。

请指导我。

非常感谢。

sublimetext3 abbreviation emmet
1个回答
4
投票

打开sublime文本控制台并输入sublime.log_commands(True)。按Ctrl + E,就像扩展缩写一样。 ST控制台将显示要在键绑定中使用的命令和参数。键绑定将具有该表单

{"keys": ["f12"], "command": <command listed in the console>, "args": <object containing args listed if applicable.>}

编辑

[
    {
        "keys": [
            "f12"
        ], 
        "args": {
            "action": "expand_abbreviation"
        }, 
        "command": "run_emmet_action", 
        "context": [
            {
                "key": "emmet_action_enabled.expand_abbreviation"
            }
        ]
    }
]
© www.soinside.com 2019 - 2024. All rights reserved.