Created
September 17, 2011 10:47
-
-
Save mrBliss/1223837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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