Created
July 20, 2010 13:09
-
-
Save miyamuko/482933 to your computer and use it in GitHub Desktop.
指定したシンボルの refwiki を開く
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
;; 指定したシンボルの refwiki を開く | |
(defun refwiki (symbol) | |
(interactive "SSymbol: ") | |
(shell-execute (format nil "http://xyzzy.s53.xrea.com/reference/wiki.cgi?p=~A" | |
(si:www-url-encode (string symbol) nil "0-9A-Za-z._~ ")) | |
t)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment