Created
August 9, 2013 09:55
-
-
Save yoshitsugu/6192532 to your computer and use it in GitHub Desktop.
emacsで選択範囲をFireFoxでgoogle検索 ref: http://qiita.com/yoshitsugu@github/items/9d78915b24bcbff7222f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun search-region-by-google () | |
| "search by google" | |
| (interactive) | |
| (shell-command-on-region (region-beginning) (region-end) "read WORD ; firefox \"http://www.google.com/search?q=$WORD\"")) | |
| ; C-c sに割り当て | |
| (global-set-key "\C-cs" 'search-region-by-google) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment