什么是Lispbox?
SLIME (Superior Lisp Interaction Mode forEmacs)
SLIME对Emacs进行了扩充,提供了Common Lisp的一种交互式编程环境。SLIME由两部分组成:一部分针对Emacs,使用EmacsLisp开发,用来定义Emacs的编辑模式、提供CommonLisp调试器SLDB的用户界面以及创建一个REPL(Read-Eval-Print Loop) 缓冲区等;另一部分称为Swank,使用使用CommonLisp开发,是一个服务器程序,运行在某种特定的CommonLisp实现中。Emacs通过IP协议连接Swank,因此Emacs可以连接到本地或者远程机器上的Swank。本文中主要介绍Emacs连接本地Swank实例的情况。
SLIME定义了一种新的次模式(minormode)slime-mode用以扩充标准的lisp-mode。lisp-mode使得Emacs能够编辑Lisp源程序,而slime-mode使得Emacs能够与一个运行中的CommonLisp进程进行通信以完成编译、调试CommonLisp程序等任务。
Lispbox的安装和使用
Lispbox的中文问题
What is Lispbox?
Lispbox is an IDE for Common Lisp development.
Actually, Lispbox is just a pre-configured packaging of the Emacs editing environment, SLIME (The Superior Lisp Interaction Mode for Emacs), the Quicklisp library manager, and the Clozure Common Lisp compiler.
Combined, these components integrate to provide all of the functionality you would expect from an IDE, and more. Lispbox makes it quick and easy to get started using them.
Lispbox test builds
Known issues:
- The Mac OS X version currently requires OS X 10.6 Snow Leopard.
- The Linux version requires GTK2 and some other common libraries, and has issues with glibc on some Linux distributions.
- All versions require a CPU with SSE2 support (anything relatively recent).
Emacs在Ubuntu系统中Ibus输入法中文支持问题
Emacs,用CTRL+ SPACE怎么也调不出我的ibus输入法,但是使用terminal版本的emacs:emacs -nw完全没有问题。
原因是:
GUI版本的emacs的话CTRL+ SPACE被绑定到MarkSet这个命令上去了,所以解决办法如下:
解决办法:
1.install ibus-el package:
sudo apt-get install ibus-el
2.Put the following in your .emacs file:
(require 'ibus)
(add-hook'after-init-hook'ibus-mode-on)
(采用源自带emacs。删去了自编译版本)
参考链接:
http://www.emacswiki.org/emacs/IBusMode
Lispbox是Common Lisp开发的IDE,包含预配置的Emacs、SLIME、Quicklisp和Clozure Common Lisp。本文介绍了Lispbox的安装、使用及在Ubuntu系统中解决Emacs Ibus输入法中文支持的问题。

被折叠的 条评论
为什么被折叠?



