Last Updated: February 25, 2016
·
550
· arpitr

Web Searching from Emacs

Paste this to .emacs:

(global-set-key (kbd "C-x g") 'webjump)
;; Add Urban Dictionary to webjump
  (eval-after-load "webjump"
  '(add-to-list 'webjump-sites
     '("Urban Dictionary" .
        [simple-query
            "www.urbandictionary.com"
            "http://www.urbandictionary.com/define.php?term="
            ""])))

Restart emacs and use C-x g.

Webjump let's you quickly search Google, Wikipedia, Emacs Wiki and other pages.

This snippet adds Urban Dictionary to the list of pages.

Source :
What the Emacs d