Klimi's new dotfiles with stow.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

20 строки
690 B

4 лет назад
  1. ;;; This file is intended to be loaded by an implementation to
  2. ;;; get a running swank server
  3. ;;; e.g. sbcl --load start-swank.lisp
  4. ;;;
  5. ;;; Default port is 4005
  6. ;;; For additional swank-side configurations see
  7. ;;; 6.2 section of the Slime user manual.
  8. (load (merge-pathnames "swank-loader.lisp" *load-truename*))
  9. (swank-loader:init
  10. :delete nil ; delete any existing SWANK packages
  11. :reload nil ; reload SWANK, even if the SWANK package already exists
  12. :load-contribs nil) ; load all contribs
  13. (swank:create-server :port 4005
  14. ;; if non-nil the connection won't be closed
  15. ;; after connecting
  16. :dont-close nil)