From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Lennart Borgman <lennart.borgman@gmail.com>
Cc: Emacs-Devel devel <emacs-devel@gnu.org>
Subject: Re: Where do you add key bindings for a mode made with define-derived-mode
Date: Wed, 29 Dec 2010 10:43:17 -0500 [thread overview]
Message-ID: <jwvk4isio13.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <AANLkTi=KSQCnRkrjoJdUF3gR3au+FHqFDV67mLsM0b5p@mail.gmail.com> (Lennart Borgman's message of "Wed, 29 Dec 2010 14:28:54 +0100")
> Do you do that after the defining the major mode (i.e. when loading
> the library where it is defined) or is there another way?
The usual way:
(defvar foo-mode-map
(let ((map (make-sparse-keymap)))
(define-key map foo bar)
map))
(define-derived-mode foo-mode ...)
Tho, maybe I simply misunderstood your question.
Stefan
next prev parent reply other threads:[~2010-12-29 15:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-29 13:28 Where do you add key bindings for a mode made with define-derived-mode Lennart Borgman
2010-12-29 13:41 ` Leo
2010-12-29 15:43 ` Stefan Monnier [this message]
2010-12-29 18:38 ` Lennart Borgman
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=jwvk4isio13.fsf-monnier+emacs@gnu.org \
--to=monnier@iro.umontreal.ca \
--cc=emacs-devel@gnu.org \
--cc=lennart.borgman@gmail.com \
/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 public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).