Skip to content

Instantly share code, notes, and snippets.

@yoshitsugu
Created August 9, 2013 09:55
Show Gist options
  • Select an option

  • Save yoshitsugu/6192532 to your computer and use it in GitHub Desktop.

Select an option

Save yoshitsugu/6192532 to your computer and use it in GitHub Desktop.
emacsで選択範囲をFireFoxでgoogle検索 ref: http://qiita.com/yoshitsugu@github/items/9d78915b24bcbff7222f
(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