Function: kermit-default-nl
kermit-default-nl is an interactive and byte-compiled function defined
in kermit.el.gz.
Signature
(kermit-default-nl)
Documentation
Make RETURN end the line with a newline char. This is the default state.
In this state, use LFD to send a line and end it with a carriage-return.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/kermit.el.gz
(defun kermit-default-nl ()
"Make RETURN end the line with a newline char. This is the default state.
In this state, use LFD to send a line and end it with a carriage-return."
(interactive)
(define-key shell-mode-map "\n" 'kermit-send-input-cr)
(define-key shell-mode-map "\r" 'comint-send-input))