put screenshot ahead to display
[eldoc-overlay.git] / eldoc-overlay.el
blob10db1a21c2568106ecb915145e5f4bed218292ae
1 ;;; eldoc-overlay.el --- Display eldoc with contextual documentation overlay.
3 ;; Author: stardiviner <numbchild@gmail.com>
4 ;; Author: Robert Weiner <rsw@gnu.org>
5 ;; Maintainer: stardiviner <numbchild@gmail.com>
6 ;; Keywords: documentation, eldoc, overlay
7 ;; URL: https://github.com/stardiviner/eldoc-overlay
8 ;; Created: 14th Jan 2017
9 ;; Modified: 18th Dec 2017
10 ;; Version: 0.1.1
11 ;; Package-Requires: ((emacs "24.3") (inline-docs "1.0.1") (quick-peek "1.0"))
13 ;;; Commentary:
15 ;; Eldoc displays the function signature of the closest function call
16 ;; around point either in the minibuffer or in the modeline.
18 ;; This package modifies Eldoc to display this documentation inline
19 ;; using a buffer text overlay.
21 ;; `eldoc-overlay-mode' is a per-buffer local minor mode.
23 ;; By default, the overlay is not used in the minibuffer, eldoc is shown in the modeline
24 ;; in this case. Set the option `eldoc-overlay-enable-in-minibuffer' non-nil if you want
25 ;; to enable overlay use in the minibuffer.
27 ;; Finally, see the documentation for `eldoc-overlay-backend' if you want to try
28 ;; a different overlay display package backend.
30 ;;; Code:
31 ;;; ----------------------------------------------------------------------------
33 (require 'eldoc)
35 ;; User Options
36 (defgroup eldoc-overlay nil
37 "Display Eldoc function signatures using in-buffer text overlays"
38 :prefix "eldoc-overlay-"
39 :group 'eldoc)
41 (defcustom eldoc-overlay-enable-in-minibuffer nil
42 "Non-nil (default: nil) means enable `eldoc-overlay-mode' in the minibuffer.
43 When nil and in the minibuffer, if standard `eldoc-mode' is
44 enabled, it displays function signatures in the modeline."
45 :type 'boolean
46 :group 'eldoc-overlay)
49 ;; Variables
50 (defvar eldoc-overlay-backend 'quick-peek
51 "The backend library that displays eldoc overlays.
52 Two backends are supported: `inline-docs' and `quick-peek'.")
54 ;; Functions
55 (defun eldoc-overlay-inline-docs (format-string &rest args)
56 "Inline-docs backend function to show FORMAT-STRING and ARGS."
57 (inline-docs format-string args))
59 (defun eldoc-overlay-quick-peek (format-string &rest args)
60 "Quick-peek backend function to show FORMAT-STRING and ARGS."
61 (when format-string
62 (quick-peek-show
63 (apply 'format format-string args)
64 (point)
65 1)))
67 (defun eldoc-overlay-display (format-string &rest args)
68 "Display eldoc for the minibuffer when there or call the function indexed by `eldoc-overlay-backend'."
69 (unless (or (company-tooltip-visible-p)
70 (when (and (featurep 'company-box) (company-box--get-frame))
71 (frame-visible-p (company-box--get-frame))))
72 (if (and (minibufferp) (not eldoc-overlay-enable-in-minibuffer))
73 (apply #'eldoc-minibuffer-message format-string args)
74 (funcall (pcase eldoc-overlay-backend
75 (`inline-docs 'eldoc-overlay-inline-docs)
76 (`quick-peek 'eldoc-overlay-quick-peek))
77 (funcall eldoc-documentation-function)))))
79 (defun eldoc-overlay-enable ()
80 (setq-local eldoc-message-function #'eldoc-overlay-display)
81 (when (eq eldoc-overlay-backend 'quick-peek)
82 (add-hook 'post-command-hook #'quick-peek-hide)))
84 (defun eldoc-overlay-disable ()
85 (pcase eldoc-overlay-backend
86 ('quick-peek
87 (quick-peek-hide)
88 ;; Remove hook when no buffers have any peek overlays
89 (unless (delq nil (mapcar (lambda (buf) (buffer-local-value 'quick-peek--overlays buf)) (buffer-list)))
90 (remove-hook 'post-command-hook #'quick-peek-hide)))
91 ('inline-docs
93 (setq-local eldoc-message-function #'eldoc-minibuffer-message))
95 ;;;###autoload
96 (define-minor-mode eldoc-overlay-mode
97 "Minor mode for displaying eldoc contextual documentation using a text overlay."
98 :require 'eldoc-overlay-mode
99 :group 'eldoc-overlay
100 :init-value nil
101 :global t
102 :lighter " ElDoc/overlay"
103 (if eldoc-overlay-mode
104 (eldoc-overlay-enable)
105 (eldoc-overlay-disable)))
107 ;;; ----------------------------------------------------------------------------
109 (provide 'eldoc-overlay)
111 ;;; eldoc-overlay.el ends here