Skip to content

JimDBh/eldoc-on-hold

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

eldoc-on-hold

This package extends eldoc to display documentations with a delay.

Installation

This package is not on Melpa, so the best ways would be to use straight.el or quelpa.el.

Alternatively one could download the files to one's load path and require 'eldoc-on-hold.

Example using straight and use-package:

(use-package eldoc-on-hold
  :straight (:type git :host github :repo "JimDBh/eldoc-on-hold")
  :demand t
  :after eldoc
  :bind
  (("C-c h" . eldoc-on-hold-pick-up))
  :custom
  ((eldoc-on-hold-delay-interval 10))
  :config
  (global-eldoc-on-hold-mode 1))

Usage

When global-eldoc-on-hold-mode is on, eldoc will wait for an extra time of eldoc-on-hold-delay-interval seconds to display the message.

Note that this is in addition to eldoc-idle-delay, however eldoc-idle-delay delays the calculation of eldoc info, while eldoc-on-hold-delay-interval delays the display of the info.

An extra command, eldoc-on-hold-pick-up is also provided to immediately display the eldoc message.

Contributing

See CONTRIBUTING.md for details.

License

Apache 2.0; see LICENSE for details.

Disclaimer

This project is not an official Google project. It is not supported by Google and Google specifically disclaims all warranties as to its quality, merchantability, or fitness for a particular purpose.

About

Emacs extension to delay the display of eldoc messages.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published