slime startup in emacs in a splitter windows buffer, how to make it a full window?

StackOverflow https://stackoverflow.com/questions/19583318

  •  01-07-2022
  •  | 
  •  

質問

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