Klimi's new dotfiles with stow.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

20 linhas
690 B

4 anos atrás
  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)