Here is my .emacs:

(add-to-list 'load-path "~/Documents/slime/")  ; your SLIME directory
(setq inferior-lisp-program "/usr/local/bin/sbcl") ; your Lisp system
(require 'slime-autoloads)
(slime-setup '(slime-fancy slime-asdf slime-banner))
(slime)

Everytime i start emacs, slime started in a split window. How to make it start in a full window?

有帮助吗?

解决方案

Add this to your slime.el or .emacs

(setq pop-up-windows nil)

其他提示

Add this before you call (slime)

(add-hook 'slime-repl-mode-hook #'delete-other-windows)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top