Variable: inferior-lisp-mode-map

inferior-lisp-mode-map is a variable defined in inf-lisp.el.gz.

Value

Large value
<delete>     delete-forward-char
<kp-delete>  delete-forward-char
<mouse-2>    comint-insert-input
C-<down>     comint-next-input
C-<up>       comint-previous-input
C-M-l        comint-show-output
C-M-q        indent-sexp
C-M-q        prog-indent-sexp
C-c .        comint-insert-previous-argument
C-c C-\      comint-quit-subjob
C-c C-a      lisp-show-arglist
C-c C-c      comint-interrupt-subjob
C-c C-d      lisp-describe-sym
C-c C-e      comint-show-maximum-output
C-c C-f      lisp-show-function-documentation
C-c C-k      lisp-compile-file
C-c C-l      lisp-load-file
C-c C-n      comint-next-prompt
C-c C-o      comint-delete-output
C-c C-p      comint-previous-prompt
C-c C-r      comint-show-output
C-c C-s      comint-write-output
C-c C-u      comint-kill-input
C-c C-v      lisp-show-variable-documentation
C-c C-w      backward-kill-word
C-c C-x      comint-get-next-from-history
C-c C-z      comint-stop-subjob
C-c M-o      comint-clear-buffer
C-c M-r      comint-previous-matching-input-from-input
C-c M-s      comint-next-matching-input-from-input
C-c RET      comint-copy-old-input
C-c SPC      comint-accumulate
C-d          comint-delchar-or-maybe-eof
C-x C-e      lisp-eval-last-sexp
DEL          backward-delete-char-untabify
M-n          comint-next-input
M-p          comint-previous-input
M-q          prog-fill-reindent-defun
M-r          comint-history-isearch-backward-regexp
RET          comint-send-input

Documentation

Keymap for inferior-lisp-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defvar inferior-lisp-mode-map
  (let ((map (copy-keymap comint-mode-map)))
    (set-keymap-parent map lisp-mode-shared-map)
    (define-key map "\C-x\C-e" #'lisp-eval-last-sexp)
    (define-key map "\C-c\C-l" #'lisp-load-file)
    (define-key map "\C-c\C-k" #'lisp-compile-file)
    (define-key map "\C-c\C-a" #'lisp-show-arglist)
    (define-key map "\C-c\C-d" #'lisp-describe-sym)
    (define-key map "\C-c\C-f" #'lisp-show-function-documentation)
    (define-key map "\C-c\C-v" #'lisp-show-variable-documentation)
    map))