# inline-docs.el
-Show inline contextual docs in Emacs.
+This is a library for showing inline contextual docs above or below.
This source code mainly is
from [justbur](https://emacs.stackexchange.com/users/14114/justbur)
@@ -13,6 +13,12 @@ answered
# Usage
+You can use this library function `inline-docs` in packages like [eldoc-overlay-mode](https://github.com/stardiviner/eldoc-overlay-mode).
+
+```eldoc
+(setq eldoc-message-function #'inline-docs)
+```
+
```elisp
(inline-docs "FORMATED-STRING")
(inline-docs "STRING")
;;; Commentary:
-
+;; This is a library for showing inline contextual docs above or below.
+;;
+;; You can use this library function `inline-docs` in packages like
+;; https://github.com/stardiviner/eldoc-overlay-mode.
+;;
+;; ```eldoc
+;; (setq eldoc-message-function #'inline-docs)
+;; ```
+;;
+;; ```elisp
+;; (inline-docs "FORMATED-STRING")
+;; (inline-docs "STRING")
+;; ```
;;; Code:
;;; ----------------------------------------------------------------------------