更改Sublime Text 2中的“下一个文件”和“上一个文件”快捷方式

时间:2013-04-23 19:45:32

标签: sublimetext2 keymapping

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

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

谢谢大家!

2 个答案:

答案 0 :(得分: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" }

答案 1 :(得分:8)

试试这个:

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

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