如何在 sublime text 中为拆分视图(同一文件的副本)创建键盘快捷键

how to create a keyboard shortcut for split view (duplicate of the same file) in sublime text

我想要一个键盘快捷键,用于在另一个选项卡中打开同一个文件。

这可以使用“文件”>“拆分视图”来完成

如何为此创建键盘快捷键

{ "keys": ["ctrl+u", "ctrl+s"],
  "command": "clone_file",
  "args": {"add_to_selection": true} },

顺便说一句,我通过在控制台中输入 sublime.log_commands(True) 找到了命令的名称。请参阅 OdatNurd 的精彩视频:P101-03 Tools of the Trade: Harnessing the power of the console!