ardggy's blog

Esc - Meta - Alt - Ctrl - Shift

eww で Gauche のリファレンスを読む

gauche-manual.el を入れて eww で読めるように設定した。取得は el-get 経由で、レシピをインラインで設定している。

gauche-manual-el - jump to gauche online manual - Google Project Hosting

キーバインドM-g に当てたのは、下の記事の影響。

#:g1: M-gを活用しよう

(add-to-list 'el-get-sources
             '(:name gauche-manual
               :type svn
               :url "http://gauche-manual-el.googlecode.com/svn/trunk/"))

(el-get-bundle gauche-manual)
(autoload 'gauche-manual "gauche-manual" "jump to gauche online manual." t)
(setq browse-url-browser-function 'eww-browse-url)
(define-key scheme-mode-map (kbd "M-g m") 'gauche-manual)