; * eldoc-box.el: Add a commentary section.

This commit is contained in:
Yuan Fu 2023-02-27 18:36:24 -08:00
parent e37a53696d
commit 16fbf1f17f
No known key found for this signature in database
GPG Key ID: 56E19BC57664A442

View File

@ -32,10 +32,41 @@
;;; Commentary: ;;; Commentary:
;; ;;
;; See documentation in README.org or visit homepage ;; Usage:
;;
;; There are three ways to use this package:
;;
;; 1. Enable eldoc-box-hover-mode. Emacs will show the documentation
;; of symbol at point in a children on the upper left or right corner.
;;
;; 2. Enable eldoc-box-hover-at-point-mode. Similar to
;; eldoc-box-hover-mode, but displays the childframe at point. (This
;; mode feels slower comparing to eldoc-box-hover-mode.)
;;
;; 3. Bind eldoc-box-help-at-point to a key and bring up the
;; documentation childframe on-demand. This command requires Emacs 28
;; to work.
;;
;; Customization faces:
;;
;; - eldoc-box-border
;; - eldoc-box-body
;;
;; Hooks:
;;
;; - eldoc-box-buffer-hook
;; - eldoc-box-frame-hook
;;
;; Customize options:
;;
;; - eldoc-box-max-pixel-width
;; - eldoc-box-max-pixel-height
;; - eldoc-box-only-multi-line
;; - eldoc-box-cleanup-interval
;; - eldoc-box-fringe-use-same-bg
;; - eldoc-box-self-insert-command-list
;;; Code: ;;; Code:
;;
(require 'cl-lib) (require 'cl-lib)
(require 'seq) (require 'seq)