Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

David R. MacIver http://unenterprise.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Chickenfoot shortcut script

Here's a little script to get Chickenfoot to add some keyboard shortcuts to firefox.

Add this to run as a trigger on window open and you'll be able to acquire focus on the current chickenfoot editor window by pressing 'alt-C' and to regain focus on the main tab (which is something I've often wanted to be able to do) with 'alt-D'

// attach keyboard shortcut (Alt-C)
chromeWindow.addEventListener("keypress",
   function(event) {
     if (event.altKey && event.charCode == 'c'.charCodeAt(0)) {
       event.preventDefault();
       var sidebar = Chickenfoot.getSidebarWindow(chromeWindow);
       if (sidebar) {
          sidebar.getSelectedBuffer().focus();
       }
     }
    },
    true);


// attach keyboard shortcut (Alt-D)
chromeWindow.addEventListener("keypress",
   function(event) {
     if (event.altKey && event.charCode == 'd'.charCodeAt(0)) {
       event.preventDefault();
	   tab.focus();
       }
    },
    false);



« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS