将密钥绑定发送到终端ipython vscode

eivnm1vs  于 2021-09-08  发布在  Java
关注(0)|答案(0)|浏览(158)

在执行宏/多命令时,是否有向终端发送键序列的方法?
我正在尝试设置以下命令:

"multiCommand.commands": [
    {
        "command": "multiCommand.runCellInPythonTerminal",
        "label": "Run cell in python terminal",
        "sequence": [
            "jupyter.selectCellContents",
            "python.execSelectionInTerminal",
            "cursorDown"
        ]
    }
],

使用ipython,但在发送所选文本之前,我希望发送ctrl+o将单元格中的所有行分组在一起:
例子:

In [21]: print(2+2)
    ...: print(2+2)
    ...: print(2+2)
    ...: 
4
4
4

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题