Created
February 9, 2012 01:02
redirect gist urls to raw gist.
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment