Skip to content

Instantly share code, notes, and snippets.

@mikedamage
Created January 22, 2009 20:23
Show Gist options
  • Save mikedamage/50690 to your computer and use it in GitHub Desktop.
Save mikedamage/50690 to your computer and use it in GitHub Desktop.
/* ColorSchemer Search */
CmdUtils.CreateCommand({
name: "color-schemer",
icon: "http://www.colorschemer.com/favicon.ico",
preview: "Search colorschemer.com for color schemes",
author: { name: "Mike Green", email: "mike.is.green@gmail.com" },
license: "GNU GPL",
takes: {"input": noun_arb_text },
execute: function(input) {
Utils.openUrlInBrowser("http://www.colorschemer.com/schemes/search.php?s="+encodeURIComponent(input.text));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment