Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

How can I disable the ctrl+t shortcut?

  • 8 odpovedí
  • 0 má tento problém
  • 67 zobrazení
  • Posledná odpoveď od dan.murray

more options

How can I disable the ctrl+t shortcut? I have tried using the Shortkey add-on, but it will not touch the ctrl+t shortcut. It works for everything else, just not that one. I've been told I can modify the browser.xhtml file inside the omni.ja file, but I am finding that almost impossible. Has anyone managed to do this?

How can I disable the ctrl+t shortcut? I have tried using the Shortkey add-on, but it will not touch the ctrl+t shortcut. It works for everything else, just not that one. I've been told I can modify the browser.xhtml file inside the omni.ja file, but I am finding that almost impossible. Has anyone managed to do this?

Upravil(a) dan.murray dňa

Všetky odpovede (8)

more options

Do you only want to disable "Ctrl+T" (open new tab) or also "Ctrl+Shift+T" (undo closed tab) ?

You can disable "Ctrl+T" via the autoconfig.cfg file. For "Ctrl+T" you need to disable key_newNavigatorTab For "Ctrl+Shift+T" you need key_restoreLastClosedTabOrWindowOrSession

See this answer for a possible way to disable specific keyboard shortcuts:

You need to replace this line:

let keys = ["key_close","key_closeWindow"];

With this line:

let keys = ["key_newNavigatorTab","key_restoreLastClosedTabOrWindowOrSession"];

Pomohla vám táto odpoveď?

more options

Yes, thank you! Ctrl+T was the primary one I was having trouble disabling. The Shortkeys add-on handled pretty much everything else.

Part of the challenge is figuring out what Mozilla calls the function you are trying to disable. In the Ctrl+T example, it was called "newNavigatorTab"... if you don't know that, you're kind of stuck.

Of course, now it appears Ctrl-N is not being blocked... trying to find the name for THAT function, now that I've let the config.sj genie out of the bottle! LOL That also opens a new tab, but in a new window.

Pomohla vám táto odpoveď?

more options

Vybrané riešenie

Pomohla vám táto odpoveď?

more options

Is there a complete list somewhere of what shortcut keys call which function? The few that have been passed on here are great, but it would be helpful to have a comprehensive list.

Pomohla vám táto odpoveď?

more options

You can look at the Browser Toolbox.

To enable the Browser Toolbox, use this in the Web Developer Tools Settings (press F1 on any of the devtools like the Inspector).

Pomohla vám táto odpoveď?

more options

Sadly, I cannot see anything related to the actual keystrokes that invoke the functions. I suspect there must be a comprehensive list out there somewhere (I can't be the first person to want this LOL).

Pomohla vám táto odpoveď?

more options

Within a key tag, you can find the key in the key attribute. The modifiers attribute set what modifier key(s) like Shift (shift) and Ctrl (accel) and Alt (alt) you need to press. The data-l10n-id attribute gives some clues about the action and the command sets the action.

Ctrl+N -> key_newNavigator -> window-new-shortcut -> cmd_newNavigator

 <key id="key_newNavigator" data-l10n-id="window-new-shortcut" command="cmd_newNavigator" modifiers="accel" key="N"/>

Ctrl+Shift+W -> key_closeWindow -> close-shortcut -> cmd_closeWindow

 <key id="key_closeWindow" data-l10n-id="close-shortcut" command="cmd_closeWindow" modifiers="accel,shift" key="W"/>

Alt+CursorBack -> Browser:Back

 <key id="goBackKb" keycode="VK_LEFT" command="Browser:Back" modifiers="alt"/>

You would have to search the source code to get more information about a specific key code and action, there are usually explanatory comments.

Pomohla vám táto odpoveď?

more options

OK... maybe I'm blind to something here... I can find code with the <key id=...> in it, and it includes everything, such as the data-l10n-id, the command and the modifiers... but no actual key= part. Where are you finding that?

Pomohla vám táto odpoveď?

Položiť otázku

Ak chcete odpovedať na príspevky, musíte sa prihlásiť do svojho účtu. Ak ešte nemáte účet, položte novú otázku.