Add inform

This commit is contained in:
Jeremy Dormitzer 2020-05-06 00:01:33 -04:00
parent 1c65a09877
commit 0a346887f9

View File

@ -6024,6 +6024,30 @@ A much-improved help buffer:
(help-map "k" #'helpful-key))
#+END_SRC
* Inform
Provides links to the help documentation for ELisp symbols from Info
buffers:
#+BEGIN_SRC emacs-lisp
(use-package inform
:straight (:host github :repo "dieter-wilhelm/inform")
:defer 0
:config
(define-button-type 'inform-function
:supertype 'inform-xref
'inform-function 'helpful-function
'inform-echo (purecopy "mouse-2, RET: describe this function"))
(define-button-type 'inform-variable
:supertype 'inform-xref
'inform-function 'helpful-variable
'inform-echo (purecopy "mouse-2, RET: describe this variable"))
(define-button-type 'inform-symbol
:supertype 'inform-xref
'inform-function #'helpful-symbol
'inform-echo (purecopy "mouse-2, RET: describe this symbol")))
#+END_SRC
* Vuiet
A music browser and player:
#+BEGIN_SRC emacs-lisp