Skip to content

Instantly share code, notes, and snippets.

@TakesxiSximada
Created September 10, 2018 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TakesxiSximada/508372eaae20079e423347e9a7ca3cd0 to your computer and use it in GitHub Desktop.
Save TakesxiSximada/508372eaae20079e423347e9a7ca3cd0 to your computer and use it in GitHub Desktop.
xwidget-webkit-browse-urlを使ってgoogleの検索を行う
(defun our-google (word)
(interactive "sSearch: ")
(let* ((word (string-join (split-string word " ") "+"))
(url (format "https://www.google.co.jp/search?q=%s" word)))
(xwidget-webkit-browse-url (url-encode-url url) t)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment