Function: rlogin-mode
rlogin-mode is an interactive and byte-compiled function defined in
rlogin.el.gz.
Signature
(rlogin-mode)
Documentation
Major mode derived from shell-mode by define-derived-mode.
It inherits all of the parent's attributes, but has its own keymap, abbrev table and syntax table:
rlogin-mode-map, rlogin-mode-abbrev-table and
rlogin-mode-syntax-table
which more-or-less shadow shell-mode's corresponding tables.
In addition to any hooks its parent mode might have run, this mode
runs the hook rlogin-mode-hook, as the final or penultimate step
during initialization.
C-\ kermit-esc
C-c C-\ rlogin-send-Ctrl-backslash
C-c C-b shell-backward-command
C-c C-c rlogin-send-Ctrl-C
C-c C-d rlogin-send-Ctrl-D
C-c C-f shell-forward-command
C-c C-q kermit-send-char
C-c C-z rlogin-send-Ctrl-Z
C-c \ kermit-esc
C-d rlogin-delchar-or-send-Ctrl-D
C-j kermit-send-input-cr
C-x n d shell-narrow-to-prompt
M-? comint-dynamic-list-filename-completions
M-RET shell-resync-dirs
TAB completion-at-point
TAB rlogin-tab-or-complete
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/rlogin.el.gz
(define-derived-mode rlogin-mode shell-mode "Rlogin"
(setq shell-dirtrackp rlogin-directory-tracking-mode)
(make-local-variable 'comint-file-name-prefix))