hitode909の日記

以前はプログラミング日記でしたが、今は子育て日記です

google.el

EmacsからGoogleを開くやつ


https://gist.github.com/960124

(defun google (begin end &optional arg)
  (interactive "r\nP")
  (let (
        (str (buffer-substring-no-properties begin end))
        )
    (browse-url (concat "http://www.google.co.jp/search?q=" str))))