als*_*eet 8 keymapping sublimetext2
我没有运气更改Sublime中切换文件的键绑定.有人知道这笔交易在这里吗?所有我想要实现的是cmd +]和cmd + [显示下一个和上一个文件.然后我可以使用tab和shift + tab来进行所有缩进.
[
{ "keys": ["super+]"], "command": "Next File" },
{ "keys": ["super+["], "command": "Previous File" }
]
Run Code Online (Sandbox Code Playgroud)
感谢大家!
sto*_*ury 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" }
Run Code Online (Sandbox Code Playgroud)
试试这个:
[
{ "keys": ["ctrl+]"], "command": "next_view" },
{ "keys": ["ctrl+["], "command": "prev_view" }
]
Run Code Online (Sandbox Code Playgroud)
当然这进入了"Key Bindings - User"文件.
归档时间: |
|
查看次数: |
7389 次 |
最近记录: |