本文介绍了如何配置 xdebug stacktrace 以在 VS Code 中链接和打开文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当 xdebug 提供堆栈跟踪时,它可以创建链接以在文本编辑器中的特定行打开文件.例如,如果安装了 subl 处理程序,以下配置将在 Sublime 中打开文件:
When xdebug provides a stacktrace, it can create links to open files in your text editor at a particular line. For instance, the following configuration will open files in Sublime, if the subl handler is installed:
xdebug.file_link_format="subl://open?url=%f&line=%l"
VS Code 如何设置 file_link_format?
How does one set file_link_format for VS Code?
推荐答案
这里是 VS Code 的 URL 格式.
因此,xdebug 配置是:
Thus, the xdebug config is:
xdebug.file_link_format="vscode://file/%f:%l"
这篇关于如何配置 xdebug stacktrace 以在 VS Code 中链接和打开文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!