Advertisement
Guest User

Untitled

a guest
Jun 27th, 2010
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?xml version="1.0"?>
  2.  
  3. <overlay id="sendHistory-overlay"
  4. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  5. <script type="application/x-javascript" src="chrome://sendHistory/content/sendHistory.js"/>
  6.  
  7. <commandset id="sendHistoryCommands">
  8. <command id="hist_up" oncommand="MsgHistory.goUp()" />
  9. <command id="hist_down" oncommand="MsgHistory.goDown()" />
  10. <command id="hist_reset" oncommand="MsgHistory.resetHist()" />
  11. </commandset>
  12.  
  13. <keyset id="sendHistoryKeys">
  14. <key id="nav_up" key="VK_UP" modifiers="ctrl" command="hist_up" />
  15. <key id="nav_down" key="VK_DOWN" modifiers="ctrl" command="hist_down" />
  16. <key id="nav_reset" key="VK_ENTER" command="hist_reset" />
  17. </keyset>
  18. </overlay>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement