Have you ever been right in the middle of coding and wanted an official PHP function definition, etc? What about wanting to Goooooogle for a phrase right inside your source?
These JavaScript macros should cover it ;)
php.net function definition
// Create windows scripting host shell object
var oShell = new ActiveXObject( "WScript.Shell" );
// Grab the selection and escape for URL
search = escape( document.selection.text );
if( search != '' )
// Search for it!
oShell.Run('http://www.php.net/search.php?show=quickref&pattern='+search);
else alert( 'Please make a selection!' );
In-line google search
// Create windows scripting host shell object
var oShell = new ActiveXObject( "WScript.Shell" );
// Grab the selection and escape for URL
search = escape( document.selection.text );
if( search != '' )
// Search for it!
oShell.Run(''http://www.google.com/search?hl=en&btnG=Google+Search&q='+search);
else alert( 'Please make a selection!' );
Simply highlight your text, and run the Macro!