本文主要是介绍emacs中使用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")
C-x 2 ;;新打开一个水平分割的窗口。
C-x o ;;跳转到这个新打开的窗口。M-x run-scheme ;;在新打开的窗口里面运行scheme解释器。C-x C-e ;;将光标之前的最后一个语句交给scheme解释并执行。
这篇关于emacs中使用mit-scheme的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!