mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
19 lines
688 B
XML
19 lines
688 B
XML
<?xml version="1.0"?>
|
|
|
|
<overlay id="platformNavigationBindings"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<keyset id="navigationKeys">
|
|
<!-- proper arrow key navigation, 4.xP -->
|
|
<key id="goBackKb" keycode="VK_LEFT" observes="canGoBack" modifiers="accel"/>
|
|
<key id="goForwardKb" keycode="VK_RIGHT" observes="canGoForward" modifiers="accel"/>
|
|
<key key="[" observes="canGoBack" modifiers="accel"/>
|
|
<key key="]" observes="canGoForward" modifiers="accel"/>
|
|
<key key="." oncommand="BrowserStop();" modifiers="accel"/>
|
|
<key id="goHome" keycode="VK_HOME" command="Browser:Home" modifiers="meta"/>
|
|
</keyset>
|
|
|
|
</overlay>
|
|
|
|
|