9

我没有运气更改在 Sublime 中切换文件的键绑定。有人知道这笔交易在这里吗?我想要实现的只是 cmd+] 和 cmd+[ 来显示下一个和上一个文件。然后我可以使用 tab 和 shift+tab 进行所有缩进。

[
   { "keys": ["super+]"], "command": "Next File" },
   { "keys": ["super+["], "command": "Previous File" }
]

感谢大家!

4

2 回答 2

16

这实际上是您可能一直在寻找的。我发现返回到我正在处理的上一个文件更有用,而不是在选项卡中左右移动。但是您可以绑定到这两种行为。

// This is very useful, go back to the previously viewed file regardless of
// tab order
  { "keys": ["super+["], "command": "next_view_in_stack" },
  { "keys": ["super+]"], "command": "prev_view_in_stack" }
于 2013-11-01T05:05:09.943 回答
11

尝试这个:

[
  { "keys": ["ctrl+]"], "command": "next_view" },
  { "keys": ["ctrl+["], "command": "prev_view" }
]

当然,这会进入“Key Bindings - User”文件。

于 2013-04-23T19:53:30.587 回答