Skip to content

Instantly share code, notes, and snippets.

@lmrodriguezr
Created January 26, 2009 15:42
Show Gist options
  • Save lmrodriguezr/52845 to your computer and use it in GitHub Desktop.
Save lmrodriguezr/52845 to your computer and use it in GitHub Desktop.
CmdUtils.CreateCommand({
name: "php-search",
preview: "Search for the query on the PHP documentation",
icon: "http://www.php.net/favicon.ico",
takes: {"Query": noun_arb_text},
execute: function( toSearch ) {
var basePhpDoc="http://www.php.net/";
Utils.openUrlInBrowser( basePhpDoc+(toSearch.text?"manual-lookup.php?pattern="+toSearch.text:""));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment