命令插件的崇高文本链无法正常工作

Sublime text chain of command plugin not working properly

我实际上在 sublime text 3 中有两个工作面板,必须设置执行两个任务的快捷键,即关闭当前文件并将光标移动到左侧面板。我在键盘映射中写了以下内容:

[
    {
  "keys": ["ctrl+alt+z"], 
  "command": "chain", 
  "args": {
    "commands": [
            ["close_file"],
            ["focus_group",{"group": 0}]


  ]
  }
}
]

但如果右侧只有一个文件打开,它就不起作用 panel.It 实际上会关闭该文件,但不会将光标移动到左侧面板。如果有人能提供帮助,那将不胜感激。

你已经发现我很确定是 ChainOfCommand 插件中的一个错误,我建议你 report the bug here

在错误修复之前,您可以通过在关闭文件命令和焦点组命令之间引入一个额外的 "dummy_command" 来解决它,如下所示。

{
    "keys": ["ctrl+alt+z"],
    "command": "chain",
    "args": {
        "commands": [
            ["close_file"],
            ["dummy_command"],
            ["focus_group", {"group": 0}]
        ]
    }
},

如果 "new_file" 命令是 运行 在 "close_file""focus_group" 命令之间,我发现 focus 命令是否有效后偶然发现了这个方法。当焦点小组成功时,我尝试用 "dummy_command" 替换 "new_file" 命令,这也奏效了。它并不理想,但它有效。