dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 59a8261d66194800582f2f9c75d8387eca90c9c3
parent e4e57a92e38badf02054b33ad9b290266baefb0e
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Mon, 13 Jun 2022 00:52:10 +0200

emacs: function to open directly elisp info

Yes I know I can just C-h R but I like functions.

Diffstat:
Memacs/config.org | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -2013,6 +2013,19 @@ So I create a keybinding to toggle dedicated on a window: (org-roam-update-org-id-locations)) #+end_src +** Info manual functions +For some reason, these things don't show up in the index: + +#+begin_src emacs-lisp + (defun elisp-info (&optional node) + "Read documentation for Elisp in the info system. + With optional NODE, go directly to that node." + (interactive) + (info (format "(elisp)%s" (or node "")))) +#+end_src + +Though I can also just use ~info-display-manual~. + * Sound support On macOS, you can use afplay: