Skip to content

Instantly share code, notes, and snippets.

@mrBliss
Created September 17, 2011 10:47
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 mrBliss/1223837 to your computer and use it in GitHub Desktop.
Save mrBliss/1223837 to your computer and use it in GitHub Desktop.
;; Put one of the two in your .emacs file assuming you have SLIME
;; installed.
;; Lazy loading:
(eval-after-load "slime"
'(define-key slime-mode-map (kbd "C-j") 'slime-eval-print-last-expression))
;; Non-lazy loading:
(require 'slime)
(define-key slime-mode-map (kbd "C-j") 'slime-eval-print-last-expression)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment