gpt4 book ai didi

visual-studio-code - 在VSCode终端中使Ctrl + C = copy和Ctrl + Shift + C = interrupt

转载 作者:行者123 更新时间:2023-12-04 15:18:44 27 4
gpt4 key购买 nike

我想要Ctrl + C复制和Ctrl + Shift + C发送Ctrl + C(中断)。

我弄清楚了上半年

{
"key": "ctrl+c",
"command": "workbench.action.terminal.copySelection",
"when": "terminalFocus"
}


但是下半年我该怎么办?是否有向终端发送任意按键的命令?

最佳答案

使用Visual Studio Code 1.28.0,可以使用命令workbench.action.terminal.sendSequence将任意按键发送到终端。请参见Send text from a keybinding to the terminal

  {
"key": "ctrl+shift+c",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u0003"
},
"when": "terminalFocus"
}

关于visual-studio-code - 在VSCode终端中使Ctrl + C = copy和Ctrl + Shift + C = interrupt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45257525/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com