Created
February 20, 2010 17:14
-
-
Save mori-dev/309780 to your computer and use it in GitHub Desktop.
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
;;http://blog.livedoor.jp/naoya_t/archives/51350496.html | |
;;switch-to-buffer-other-window しないのが僕ごのみ | |
(defun gauche-info-index (topic) | |
(interactive | |
(list (read-string | |
(concat "Gauche help topic : ") | |
(current-word)))) | |
(get-buffer-create "*info*") | |
(info "/usr/share/info/gauche-refe.info.gz") | |
(Info-index topic)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment