By default the webjump hotlist has the following which I use quite often:
M-x webjump RET Google
M-x webjump RET Wikipedia
How can I add 'Stackoverflow' to my list?
By default the webjump hotlist has the following which I use quite often:
M-x webjump RET Google
M-x webjump RET Wikipedia
How can I add 'Stackoverflow' to my list?
Here's some example code in a webjump.el file on a site run by Apple:
;; (require 'webjump)
;; (global-set-key "\C-cj" 'webjump)
;; (setq webjump-sites
;; (append '(
;; ("My Home Page" . "www.someisp.net/users/joebobjr/")
;; ("Pop's Site" . "www.joebob-and-son.com/")
;; )
;; webjump-sample-sites))
A general tip for looking up answers to questions like this one:
You will need to find where you are setting your webjump-sites
variable. This is probably your .emacs
file. Then you'll need to add a pair to that alist as follows.
("stackoverflow". "www.stackoverflow.com")
A full example of what to put in your .emacs would be as follows.
(setq webjump-sites
(append '(("stackoverflow" . "www.stackoverflow.com"))
webjump-sample-sites)