fix: border column number under `display-line-number-mode'
[inline-docs.git] / README.md
blobd7063f3d8c8f17d91e0b338af408638a22e91213
1 # inline-docs.el
3 This is a library for showing inline contextual docs above or below.
5 This source code mainly is
6 from [justbur](https://emacs.stackexchange.com/users/14114/justbur)
7 answered
8 [question](https://emacs.stackexchange.com/questions/29256/display-eldoc-help-info-behind-point) .
10 # Support
12 On theory, this mode should support all Emacs available platforms.
14 Tested supported:
16 - Emacs 24.3 or upper
17 - Emacs TTY mode
19 # Screenshots
21 ![screenshot](screenshot.png)
23 # Usage
25 You can use this library function `inline-docs` in packages like [eldoc-overlay-mode](https://github.com/stardiviner/eldoc-overlay-mode).
27 ```eldoc
28 (setq eldoc-message-function #'inline-docs)
29 ```
31 ```elisp
32 (inline-docs "FORMATED-STRING")
33 (inline-docs "STRING")
34 ```
36 # related modes
38 - [eldoc-overlay](https://repo.or.cz/eldoc-overlay.git)