Function: eudc-expand-try-all
eudc-expand-try-all is an autoloaded, interactive and byte-compiled
function defined in eudc.el.gz.
Signature
(eudc-expand-try-all &optional TRY-ALL-SERVERS)
Documentation
Wrap eudc-expand-inline with a prefix argument.
If TRY-ALL-SERVERS -- the prefix argument when called interactively -- is non-nil, collect results from all servers. If TRY-ALL-SERVERS is nil, do not try subsequent servers after one server returns any match.
Probably introduced at or before Emacs version 29.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
;;;###autoload
(defun eudc-expand-try-all (&optional try-all-servers)
"Wrap `eudc-expand-inline' with a prefix argument.
If TRY-ALL-SERVERS -- the prefix argument when called
interactively -- is non-nil, collect results from all servers.
If TRY-ALL-SERVERS is nil, do not try subsequent servers after
one server returns any match."
(interactive "P")
(eudc-expand-inline (not eudc-expansion-save-query-as-kill) try-all-servers))