将 Chrome 调试器连接到文本编辑器
当我单击指向文件的堆栈跟踪链接时,是否有某种方法可以让 chrome 启动我的文本编辑器: // 网址?
Is there some way to get chrome to launch my text editor when I click on a stack trace link pointing to a file:// url?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你的文件比较多,可以尝试基于Eclipse的项目:
http://code.google.com/p/chromedevtools/
如果您成功设置源查找,您将让调试器逐步遍历您的工作文件并进行实时编辑。
与 JSDT 或 Aptana 一起安装,这可能非常有用。
然而你只会得到 JS 调试器,不支持 DOM 树。
If you have relatively many files, you could try the Eclipse-based project:
http://code.google.com/p/chromedevtools/
If you manage to set up source lookup, you will have debugger stepping over your working files and live editing.
Together with JSDT or Aptana installed this may be quite usable.
However you will get only JS debugger, DOM tree is not supported.
目前实现这一点的唯一方法是修改 DevTools 前端代码(它是 HTML+JavaScript,所以应该不会太难)来自定义链接点击处理。有一个针对此功能的 WebKit 功能请求:https://bugs.webkit.org/show_bug .cgi?id=51526
At the moment the only way to achieve this is to modify DevTools front-end code(it's HTML+JavaScript so it shouldn't be too hard) to customize link clicks handling. There is a WebKit feature request for this functionality: https://bugs.webkit.org/show_bug.cgi?id=51526