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