jueves, 9 de febrero de 2012

w3m-redirect automatically

You could take this post as a second iteration on this older post.

There are many urls that are fairly navigable on w3m (emacs-w3m that is). The less html-y the site is, the more confortable it is.

So here's a way to redirect gist links to the raw plaintext counterparts. I just wrote it in 5 minutes, and it's quite inestable, but for the moment, it Works On My Machine. I'll try to make it more general and robust in next few days (as always, with advice from davazp)

;;; When opening gist pages on w3m, redirect automatically to the raw plaintext
;;; counterpart.
;;; http://puntoblogspot.blogspot.com/2012/02/w3m-redirect-automatically.html
;;; Raimon Grau
(defun rgc/w3m-follow-raw (arg)
"redirect to raw gist on w3m"
(interactive)
(when (string-match "https?://gist.github.com" arg)
(search-forward "raw")
(w3m-view-this-url)))
(add-hook 'w3m-display-hook 'rgc/w3m-follow-raw)
view raw w3m-redirect.el hosted with ❤ by GitHub


Btw, it doesn't work if there is more than 1 file in the gist.

No hay comentarios: