更改firefox开发人员工具调试器键绑定

时间:2014-12-30 10:37:30

标签: firefox keyboard-shortcuts firefox-developer-tools

如何更改firefox调试器的步骤,跳过步骤,逐步取消键绑定?

无法找到关于此的任何文档或关于:config。

的任何内容

1 个答案:

答案 0 :(得分:0)

以防万一...

此解决方案仅适用于Windows,因为它是Autohotkey脚本。

它将键更改为:

F7->“介入”
F8->“跳过”
F9->“运行”
F10->“退出”

#WinActivateForce
#InstallKeybdHook
#Persistent
#HotkeyInterval,100
#NoEnv
SetKeyDelay, –1
SendMode Input

$F7:: 
{
    if WinActive("ahk_classMozillaWindowClass")
    {  
        Send {F11}
        Return
    }
    Send {F7}
    Return
}

$F8:: 
{
    if WinActive("ahk_classMozillaWindowClass")
    {  
        Send {F10}
        Return
    }
    Send {F8}
    Return
}

$F9:: 
{
    if WinActive("ahk_classMozillaWindowClass")
    {  
        Send {F8}
        Return
    }
    Send {F9}
    Return
}

$F10:: 
{
    if WinActive("ahk_classMozillaWindowClass")
    {  
        Send {Shift down}{F11}{Shift up}
        Return
    }
    Send {F10}
    Return
}

我很确定这可以改善(我不是Autohotkey专家)。例如,在Firefox中,{em> 会更改F7F8F9F10键,而不仅仅是在调试时!

我很感兴趣是否有人可以提出建议。