Skip to content

Instantly share code, notes, and snippets.

@duck1123
Created October 27, 2011 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duck1123/1318774 to your computer and use it in GitHub Desktop.
Save duck1123/1318774 to your computer and use it in GitHub Desktop.
connect to slime
(defun slime-connect-to-server ()
"Connect to a running slime server."
(interactive)
(setq slime-protocol-version 'ignore)
(slime-connect "127.0.0.1" "4005"))
(global-set-key (kbd "<f9> s") 'slime-connect-to-server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment