我今天安装了Sublime text3。我也安装了emmet插件。
现在插件缩写命令按 Ctrl + E 按钮工作。
我想将其更改为 F12 ,我的意思是每当我按下 F12 时它就像按 Ctrl + 一样E 按钮
我经常搜索并尝试了很多方法,但我不能这样做。
请指导我。
非常感谢。
答案 0 :(得分: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"
}
]
}
]