]> code.delx.au - gnu-emacs-elpa/commitdiff
* eldoc-eval.el Add infos in Commentary section.
authorthierry volpiatto <thierry.volpiatto@gmail.com>
Sat, 15 Oct 2011 09:02:09 +0000 (11:02 +0200)
committerthierry volpiatto <thierry.volpiatto@gmail.com>
Sat, 15 Oct 2011 09:02:09 +0000 (11:02 +0200)
packages/eldoc-eval/eldoc-eval.el

index 536f5e6b09505c61082bcd49820cb772135bf02a..1fde56ac0b8341b0283fa595faf1180b9f3daed9 100644 (file)
@@ -1,4 +1,4 @@
-;;; eldoc-eval.el --- Show eldoc when using M-:
+;;; eldoc-eval.el --- Enable eldoc support when minibuffer is in use.
 
 ;; Copyright (C) 2011 Free Software Foundation, Inc.
 
 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Commentary:
+;;
+;; This package enable eldoc support when minibuffer is in use.
+;;
+;; Eldoc info are shown by default in mode-line.
+;; but you can have eldoc info somewhere else by setting
+;; `eldoc-in-minibuffer-show-fn' to an other function (e.g `tooltip-show').
+;;
+;; By default with this package `M-:' will use `pp-eval-expression'
+;; instead of `eval-expression'; You can change that in
+;; `eval-prefered-function'.
+;;
+;; It provide also a convenient macro to enable eldoc support
+;; in your own functions using minibuffer or in your defadvices,
+;; that is `with-eldoc-in-minibuffer'.
+;;
+;; Users of own minibuffer frame will have to set
+;; `eldoc-in-minibuffer-own-frame-p' to non--nil.
+;;
+;; You can turn off at anytime eldoc support in minibuffer
+;; by setting `eldoc-in-minibuffer' to nil.
 
 ;;; Code:
 (require 'eldoc)