如何将 xdebug stacktrace 配置为 link 并在 VS Code 中打开文件
How to configure xdebug stacktrace to link to and open files in VS Code
当 xdebug 提供堆栈跟踪时,它可以创建链接以在特定行的文本编辑器中打开文件。例如,如果安装了 subl 处理程序,以下配置将在 Sublime 中打开文件:
xdebug.file_link_format="subl://open?url=%f&line=%l"
如何为 VS Code 设置 file_link_format?
这是 URL format for VS Code 的文档。
因此,xdebug 配置为:
xdebug.file_link_format="vscode://file/%f:%l"
当 xdebug 提供堆栈跟踪时,它可以创建链接以在特定行的文本编辑器中打开文件。例如,如果安装了 subl 处理程序,以下配置将在 Sublime 中打开文件:
xdebug.file_link_format="subl://open?url=%f&line=%l"
如何为 VS Code 设置 file_link_format?
这是 URL format for VS Code 的文档。
因此,xdebug 配置为:
xdebug.file_link_format="vscode://file/%f:%l"