Function: eudc-mode
eudc-mode is an interactive and byte-compiled function defined in
eudc.el.gz.
Signature
(eudc-mode)
Documentation
Major mode used in buffers displaying the results of directory queries.
There is no sense in calling this command from a buffer other than one containing the results of a directory query.
These are the special commands of EUDC mode:
q -- Kill this buffer.
f -- Display a form to query the current directory server.
n -- Move to next record.
p -- Move to previous record.
b -- Insert record at point into the BBDB database.
In addition to any hooks its parent mode special-mode might have run,
this mode runs the hook eudc-mode-hook, as the final or penultimate
step during initialization.
<backtab> widget-backward
<down-mouse-1> widget-button-click
<down-mouse-2> widget-button-click
<touchscreen-begin> widget-button-click
C-M-i widget-backward
RET widget-button-press
S-<tab> widget-backward
TAB widget-forward
b eudc-try-bbdb-insert
f eudc-query-form
n eudc-move-to-next-record
p eudc-move-to-previous-record
q kill-current-buffer
x kill-current-buffer
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
(define-derived-mode eudc-mode special-mode "EUDC"
"Major mode used in buffers displaying the results of directory queries.
There is no sense in calling this command from a buffer other than
one containing the results of a directory query.
These are the special commands of EUDC mode:
q -- Kill this buffer.
f -- Display a form to query the current directory server.
n -- Move to next record.
p -- Move to previous record.
b -- Insert record at point into the BBDB database."
(easy-menu-define eudc-emacs-menu eudc-mode-map "" (eudc-menu)))