当前位置:  开发笔记 > 编程语言 > 正文

有没有办法自定义Firebug的键盘快捷键?

如何解决《有没有办法自定义Firebug的键盘快捷键?》经验,为你挑选了2个好方法。

有没有办法自定义Firebug的键盘快捷键?我喜欢能够使用Firebug的Script面板逐步执行JavaScript代码,但看起来我只能使用默认的键盘快捷键来单步执行代码或使用鼠标单击相应的按钮.

我错过了什么吗?

是否有一些秘密:在Firefox/Firebug中配置 hack会对我有帮助吗?



1> lepe..:

您可以手动更改它们.转到此目录:

在最新版本中,扩展名为单个文件,扩展名为XPI.只需将其重命名为ZIP,创建一个目录并将其内容提取到其中.

Linux的:

.mozilla/firefox/*****.default/extensions/firebug@software.joehewitt.com/ 

视窗:

%APPDATA%\Mozilla\Firefox\Profiles\\extensions\firebug@software.joehewitt.com\

然后修改此文件(这些是我的重新映射设置):

content/firebug/debugger/script/scriptPanel.js(Firebug 2.0)

    this.keyListeners =
    [
        chrome.keyCodeListen("F5", Events.isShift, Obj.bind(this.rerun, this, context), true),
        chrome.keyCodeListen("F5", null, Obj.bind(this.resume, this, context), true),
        chrome.keyCodeListen("F6", null, Obj.bind(this.stepOver, this, context), true),
        chrome.keyCodeListen("F7", null, Obj.bind(this.stepInto, this, context)),
        chrome.keyCodeListen("F8", null, Obj.bind(this.stepOut, this, context))
    ];

content/firebug/js/scriptPanel.js(在Firebug 2.0之前)

    this.keyListeners =
    [
        chrome.keyCodeListen("F5", null, Obj.bind(this.resume, this, context), true),
        chrome.keyListen("/", Events.isControl, Obj.bind(this.resume, this, context)),
        chrome.keyCodeListen("F6", null, Obj.bind(this.stepOver, this, context), true),
        chrome.keyListen("'", Events.isControl, Obj.bind(this.stepOver, this, context)),
        chrome.keyCodeListen("F7", null, Obj.bind(this.stepInto, this, context)),
        chrome.keyListen(";", Events.isControl, Obj.bind(this.stepInto, this, context)),
        chrome.keyCodeListen("F8", null, Obj.bind(this.stepOut, this, context)),
        chrome.keyListen(",", Events.isControlShift, Obj.bind(this.stepOut, this, context))
    ];

在2.0之前的版本中,您还应该更改本地化文件,因此工具提示应该是正确的键:

区域/ EN-US/firebug.properties

firebug.Continue=Continue (F5)
firebug.StepOver=Step Over (F6)
firebug.StepInto=Step Into (F7)
firebug.StepOut=Step Out (F8)

这就是全部.不幸的是,每次更新Firebug时都必须这样做.虽然已经有一个请求允许他们直接在Firebug中进行自定义.



2> VonC..:

如他们的讨论论坛中所述,您可以尝试keyconfig ...否则,这是一个已知的错误/限制.

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有