我没有运气更改Sublime中切换文件的键绑定。有人知道这笔交易在这里吗?所有我想要实现的是cmd +]和cmd + [显示下一个和上一个文件。然后我可以使用tab和shift + tab来进行所有缩进。
[
{ "keys": ["super+]"], "command": "Next File" },
{ "keys": ["super+["], "command": "Previous File" }
]
谢谢大家!
答案 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”文件。