我在 emacs 中打开一个 .scm 文件,并尝试使用 ++ 命令在 mit-scheme 劣质缓冲区中对其进行评估,Ctrl但是没有任何x Ctrl反应。r我按照页面中“Emacs 中的启动方案”部分中的说明操作,使用“ http://community.schemewiki.org/?emacs-tutorial ” 。
因此,当尝试直接在运行 mit-scheme 的缓冲区中评估某些内容时,我会看到相同的行为:当我按下回车键时,什么都不会被评估。但是当我直接在命令行中使用解释器时效果很好。
我的 .emacs 文件如下所示:
;;; Always do syntax highlighting
(global-font-lock-mode 1)
;;; Also highlight parens
(setq show-paren-delay 0
show-paren-style 'parenthesis)
(show-paren-mode 1)
;;; This is the binary name of my scheme implementation
(setq scheme-program-name "mit-scheme")
我有 XUbuntu 12.04、emacs23 和 mit-scheme 9.1.1。
¿ 对这个问题有任何想法吗?
提前致谢