From: Jean Louis <bugs@gnu.support>
To: Heime <heimeborgia@protonmail.com>
Cc: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: Accessing Lisp Intro with eintr
Date: Mon, 17 Oct 2022 10:20:58 +0300 [thread overview]
Message-ID: <Y00CWsWNHh6F4jK5@protected.localdomain> (raw)
In-Reply-To: <vajnobs06HMnW9nRl6WEojrNsra8MJ5wqQUFXVRAbGNVxZj-pSgMROfehsRjs0OV2Dwe7263XQDHNvRenDx49iloxfvT2C2PdkT2WKcLVTc=@protonmail.com>
* Heime via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org> [2022-10-17 07:57]:
> Using info, this is the way to access the manuals using "elisp" and
> "emacs".
I recommend using Hyperbole package to get some quicker functions:
{M-x package-install RET hyperbole} as then what you see here within
curly brackets becomes a link that you activate with M-RET:
- For Emacs Lisp reference I use always {C-h r TAB RET}
- To get into Emacs Lisp Intro is to evaluate this function:
(info "(eintr) Top")
- To make a command, meaning invokable Emacs Lisp function:
(defun my-emacs-lisp-intro ()
(interactive)
(info "(eintr) Top"))
- To assign that command to a key:
(keymap-set global-map "C-c e" #'my-emacs-lisp-intro)
Now all what you need to do is press {C-c e} to get
"An Introduction to Programming in Emacs Lisp"
And remember that key bindings shall rather begin with C-c for
user configured functions.
You can put those definitions in your init file.
(defun my-emacs-lisp-intro ()
(interactive)
(info "(eintr) Top"))
Little problem is that function `keymap-set' is in my latest version of Emacs, so you better use:
(define-key global-map (kbd "C-c e") #'my-emacs-lisp-intro)
--
Jean
Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns
In support of Richard M. Stallman
https://stallmansupport.org/
next prev parent reply other threads:[~2022-10-17 7:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-17 4:55 Accessing Lisp Intro with eintr Heime via Users list for the GNU Emacs text editor
2022-10-17 7:20 ` Jean Louis [this message]
2022-10-18 3:17 ` Eduardo Ochs
-- strict thread matches above, loose matches on Subject: below --
2022-10-17 17:02 Drew Adams
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y00CWsWNHh6F4jK5@protected.localdomain \
--to=bugs@gnu.support \
--cc=heimeborgia@protonmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.