Function: eudc-hotlist-mode
eudc-hotlist-mode is an interactive and byte-compiled function defined
in eudc-hotlist.el.gz.
Signature
(eudc-hotlist-mode)
Documentation
Major mode used to edit the hotlist of servers.
These are the special commands of this mode:
a -- Add a new server to the list.
d -- Delete the server at point from the list.
s -- Select the server at point.
t -- Transpose the server at point and the previous one
q -- Commit the changes and quit.
x -- Quit without committing the changes.
This mode runs the hook eudc-hotlist-mode-hook, as the final or
penultimate step during initialization.
a eudc-hotlist-add-server
d eudc-hotlist-delete-server
q eudc-hotlist-quit-edit
s eudc-hotlist-select-server
t eudc-hotlist-transpose-servers
x kill-current-buffer
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc-hotlist.el.gz
(define-derived-mode eudc-hotlist-mode fundamental-mode "EUDC-Servers"
"Major mode used to edit the hotlist of servers.
These are the special commands of this mode:
a -- Add a new server to the list.
d -- Delete the server at point from the list.
s -- Select the server at point.
t -- Transpose the server at point and the previous one
q -- Commit the changes and quit.
x -- Quit without committing the changes."
(setq buffer-read-only t))