I found this neat little AutoHotKey script to do quick searchs on Google and Wikipedia on RaBlog
^!r::
send ^c
clipwait
run "http://www.google.com/search?hl=en&q=%clipboard%&btnG=Search"
run "http://en.wikipedia.org/wiki/Special:Search?search=%clipboard%&go=Go"
return
Quoting from the post
I do a lot of lookups in Google and Wikipedia. What this code does is copy anything I have selected, then open Wikipedia and Google with relevant search results.
- The first line assigns the key sctrl+alt+r (I chose “R” for ‘Research)
- The second instructs AutoHotKey to “Copy” by sending the copy shortcut of “Ctrl+C”
- The third line basically says “wait here until the copy is done”
- The fourth and fifth lines are a bit tricky. I went to Google and Wikipedia, ran searches, and copied their URLs. It was a simple task finding my searches embedded in the URL. Note the %clipboard% reference in each line. You can probably guess that this is the place the “copy” was stored from line 2. I just put %clipboard% in place of the search strings I found in there.
- The fifth line? If you have no scripting or programming background, this just says, “Done, go back to whatever you were doing”