gpt4 book ai didi

vscode-debugger - VSCode调试将断点移回上一个

转载 作者:行者123 更新时间:2023-12-05 07:19:12 26 4
gpt4 key购买 nike

Visual Studio 中,我通常采用当前断点并将其移回上一行,但在 vscode 中我不知道该怎么做。

请指教。

最佳答案

有两个可能的命令可能会对您有所帮助 - 它们对我来说效果不佳,但您可能会更幸运。

我相信您正在寻找没有默认键绑定(bind)的 debug.jumpToCursor 命令。将光标放在上一行并触发命令。

由于某种原因,它没有出现在命令面板中,因此您必须设置自己的键绑定(bind)才能使其工作。在 keybindings.jon 中:

 {
"key": "ctrl+alt+'",
"command": "debug.jumpToCursor"
},

虽然您的语言服务器可能不支持此功能,但它是相当新的。另见 github issues: jump to cursor .

还有一个运行到光标命令。将光标移动到所需位置并单击鼠标右键,“运行到光标”在上下文菜单中。请参阅上面的链接了解这两个命令之间的区别:

"Move to line" can be used to set the PC (Program Counter) to any location without executing the code between the current location and the destination. So you can even go backward with this. "Run To Cursor" can only go forward and executes everything in between.

关于vscode-debugger - VSCode调试将断点移回上一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57893548/

26 4 0