Looks like the tarball is up there but the page is not yet updated and the windows binaries are not there yet.
Get. it. now.
Edit: Announcement here
Get. it. now.
Edit: Announcement here
Postings on living in an Emacs world. Posts will be mostly on using Emacs, related functions and tools.
(defun google (what)
"Use google to search for WHAT."
(interactive "sSearch: ")
(save-window-excursion
(delete-other-windows)
(let ((dir default-directory))
(w3m-browse-url (concat "http://www.google.com/search?q="
(w3m-url-encode-string what)))
(cd dir)
(recursive-edit))))
(global-set-key "\C-Cg" 'google)