如何在mac上的sublime中绑定[“alt + f,n”]?

时间:2014-01-12 10:57:56

标签: sublimetext sublimetext3

我正在尝试将 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]}

进一步调查,了解为什么这是无效的。

1 个答案:

答案 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