documentation buffer accordingly.
* `:echo', controlling how `eldoc-display-in-echo-area' should
- present this documentation item, to save space. If VALUE is
- `skip' don't echo DOCSTRING. If a number, only echo DOCSTRING
- up to that character position.
+ present this documentation item in the echo area, to save
+ space. If VALUE is a string, echo it instead of DOCSTRING. If
+ a number, only echo DOCSTRING up to that character position.
+ If `skip', don't echo DOCSTRING at all.
Finally, major modes should modify this hook locally, for
example:
for echo = (plist-get plist :echo)
for thing = (plist-get plist :thing)
unless (eq echo 'skip) do
- (when echo (setq this-doc (substring this-doc 0 echo)))
+ (setq this-doc
+ (cond ((integerp echo) (substring this-doc 0 echo))
+ ((stringp echo) echo)
+ (t this-doc)))
(when thing (setq this-doc
(concat
(propertize (format "%s" thing)