MeadowでのSchemeモード設定

No Comment - Post a comment

★Scheme mode

設定する前,Cygwinが付いてた"cygwin1.dll"をシステムディレクトリ %SYSTEM% にコピーする必要がある,以下は.emacsの追加内容:


(setq load-path
(append load-path '("e:/cygwin/usr/local/bin/")))
(setq scheme-program-name
"e:/cygwin/usr/local/bin/gosh.exe -i")
(autoload 'run-scheme
"cmuscheme" "Run an inferior Scheme process." t)
(setq auto-mode-alist
(cons (cons "\\.scm$" 'scheme-mode) auto-mode-alist))

 
This Post has No Comment Add your own!

コメントを投稿