Option-shift-space causes page refresh
I've noticed that whenever I press ⌥⇧Space (option-shift-spacebar) in Firefox Developer Edition, it causes the page to refresh.
This behaviour seems to be consistent across devices.
Is there a way to change/disable this behaviour? It is very inconvenient, as it often causes me to accidentally trigger a page refresh when I type an em dash (`—`) in a text input (opt-shift-dash, and then type a space character after it, I'm very likely to hit opt-shift-space by mistake 🙈).
Chosen solution
Found it. It's not a Firefox shortcut; it's introduced by the NoScript extension:
```
"commands": { "toggleEnforcementForTab": { "description": "__MSG_toggleEnforcementForTab__", "suggested_key": { "default": "Alt+Shift+Space", "windows": "Alt+Shift+Comma" } },
```
This means I've been accidentally toggling NoScript on and off for various sites without realising it over the years 🙀
I've changed the shortcut following the instructions at https://support.mozilla.org/en-US/kb/manage-extension-shortcuts-firefox and that pesky unexpected refresh no longer occurs 🥽
Read this answer in context 👍 0All Replies (1)
Chosen Solution
Found it. It's not a Firefox shortcut; it's introduced by the NoScript extension:
```
"commands": { "toggleEnforcementForTab": { "description": "__MSG_toggleEnforcementForTab__", "suggested_key": { "default": "Alt+Shift+Space", "windows": "Alt+Shift+Comma" } },
```
This means I've been accidentally toggling NoScript on and off for various sites without realising it over the years 🙀
I've changed the shortcut following the instructions at https://support.mozilla.org/en-US/kb/manage-extension-shortcuts-firefox and that pesky unexpected refresh no longer occurs 🥽