Variable: telnet-mode-map
telnet-mode-map is a variable defined in telnet.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-c . comint-insert-previous-argument
C-c C-\ comint-quit-subjob
C-c C-a comint-bol-or-process-mark
C-c C-c comint-interrupt-subjob
C-c C-c telnet-interrupt-subjob
C-c C-d comint-send-eof
C-c C-e comint-show-maximum-output
C-c C-l comint-dynamic-list-input-ring
C-c C-n comint-next-prompt
C-c C-o comint-delete-output
C-c C-p comint-previous-prompt
C-c C-q send-process-next-char
C-c C-r comint-show-output
C-c C-s comint-write-output
C-c C-u comint-kill-input
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 C-z telnet-c-z
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
M-n comint-next-input
M-p comint-previous-input
M-r comint-history-isearch-backward-regexp
RET comint-send-input
RET telnet-send-input
Documentation
Keymap for telnet-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/net/telnet.el.gz
(defvar telnet-mode-map
(let ((map (nconc (make-sparse-keymap) comint-mode-map)))
(define-key map "\C-m" #'telnet-send-input)
;; (define-key map "\C-j" #'telnet-send-input)
(define-key map "\C-c\C-q" #'send-process-next-char)
(define-key map "\C-c\C-c" #'telnet-interrupt-subjob)
(define-key map "\C-c\C-z" #'telnet-c-z)
map))