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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; 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) |
Btw, it doesn't work if there is more than 1 file in the gist.
No hay comentarios:
Publicar un comentario