我在sublime中创建了以下键盘快捷键:
{ "keys": ["ctrl+a", "ctrl+m"], "command": "stino_serial_monitor_start" }
工作正常,并在新选项卡中打开串行监视器。如果我可以在新窗口中打开此命令会好得多。是否有可能创建这样的热键?
答案 0 :(得分:0)
好的,所以经过一段时间花在这个问题上,我在/ CustomCommand下创建了以下.py文件,然后将原始帖子中的快捷方式链接到“mymacro”。宏名称“mymacro”必须全部小写,否则它不起作用,我猜它是某种规则。
import sublime
import sublime_plugin
class mymacro(sublime_plugin.WindowCommand):
def run(self):
self.window.run_command("new_window")
self.window.run_command("stino_serial_monitor_start")