我正在尝试将 Alt + F N 键序列绑定到特定命令。但是,它只插入一个ƒ
字符。
[
{ "keys": ["alt+f,n"], "command": "advanced_new_file_new"}
]
如何正确绑定它,以便当我单击alt + f然后n执行命令?
顺便说一句,如果我将绑定更改为["alt+f"]
绑定有效,那就不是我想要的了。
编辑:
崇高的控制台说:
Unable to parse binding {command: advanced_new_file_new, keys: [alt+f,n]}
进一步调查,了解为什么这是无效的。
答案 0 :(得分:1)
我想通了..问题是我正在研究旧的崇高文本文档,它使用xml进行键绑定。 Sublime 3使用json。
我所要做的就是改变这一点:
[
{ "keys": ["alt+f,n"], "command": "advanced_new_file_new"}
]
到此:
[
{ "keys": ["alt+f","n"], "command": "advanced_new_file_new"}
]
docs:http://docs.sublimetext.info/en/latest/reference/key_bindings.html