;;; -*- lexical-binding: t -*- ;;; ;;; this file: ;;; http://user.it.uu.se/~embe8573/emacs-init/ide/lisp.el ;;; https://dataswamp.org/~incal/emacs-init/ide/lisp.el (require 'comint) (require 'super) (defun do-repeat-complex-command () (interactive) (eval (car command-history) )) ;; IELM (require 'ielm) (let ((the-map ielm-map)) (disable-super-global-keys the-map) (define-key the-map "\C-n" #'comint-next-input) (define-key the-map "\C-p" #'comint-previous-input) (define-key the-map "\C-xk" #'bury-buffer) ) (provide 'lisp-new)