Commit ec704b5a authored by aaronl%netscape.com's avatar aaronl%netscape.com
Browse files

Bug 185270. Make Insert/shift+insert open link in new tab...

Bug 185270. Make Insert/shift+insert open link in new tab (foreground/background, depending on whether shift is pressed). r=caillon, sr=jag
parent 597f6914
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -177,7 +177,6 @@
      <handler event="keypress" keycode="VK_DELETE" modifiers="shift" command="cmd_cut" /> 
      <handler event="keypress" keycode="VK_DELETE" modifiers="control" command="cmd_copy" /> 
      <handler event="keypress" keycode="VK_INSERT" modifiers="control" command="cmd_copy" /> 
      <handler event="keypress" keycode="VK_INSERT" modifiers="shift" command="cmd_paste" /> 
      <handler event="keypress" keycode="VK_HOME" modifiers="shift,control" command="cmd_selectTop" /> 
      <handler event="keypress" keycode="VK_END" modifiers="shift,control" command="cmd_selectBottom" /> 
      <handler event="keypress" keycode="VK_F20" command="cmd_cut" /> 
+0 −1
Original line number Diff line number Diff line
@@ -95,7 +95,6 @@
      <handler event="keypress" keycode="VK_DELETE" modifiers="shift" command="cmd_cut"/>
      <handler event="keypress" keycode="VK_DELETE" modifiers="control" command="cmd_deleteWordForward"/>
      <handler event="keypress" keycode="VK_INSERT" modifiers="control" command="cmd_copy"/>
      <handler event="keypress" keycode="VK_INSERT" modifiers="shift" command="cmd_paste"/>
      <handler event="keypress" keycode="VK_HOME" modifiers="control" command="cmd_scrollTop"/>
      <handler event="keypress" keycode="VK_END" modifiers="control" command="cmd_scrollBottom"/>
      <handler event="keypress" keycode="VK_LEFT" modifiers="control" command="cmd_wordPrevious" />
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
    <key key="]" command="Browser:Forward" modifiers="accel"/>
    <key key="." oncommand="BrowserStop();" modifiers="accel"/>
    <key id="goHome" keycode="VK_HOME" command="Browser:Home" modifiers="meta"/>
    <key id="key_newTabWithTarget" keycode="VK_INSERT" modifiers="shift" command="cmd_newTabWithTarget"/>
  </keyset>  

</overlay>
+1 −0
Original line number Diff line number Diff line
@@ -109,6 +109,7 @@
  <commandset id="commands">
    <command id="cmd_newNavigator"/>
    <command id="cmd_newNavigatorTab" oncommand="BrowserOpenTab();"/>
    <command id="cmd_newTabWithTarget" oncommand="contentAreaClick(event);"/>

    <command id="cmd_newEditor"/>
    <!-- NOT IMPLEMENTED
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@

    <key id="goHome" keycode="VK_HOME" command="Browser:Home" modifiers="alt"/>
    <key id="key_fullScreen" keycode="VK_F11" command="View:FullScreen"/>
    <key id="key_newTabWithTarget" keycode="VK_INSERT" command="cmd_newTabWithTarget"/>
    <key id="key_newTabWithTarget" keycode="VK_INSERT" modifiers="shift" command="cmd_newTabWithTarget"/>
  </keyset>

  <menuitem id="menuitem_fullScreen" hidden="false"/>
Loading