From: Xah <xahlee@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: confusion on keymap's forms in doc
Date: Mon, 27 Oct 2008 23:41:40 -0700 (PDT) [thread overview]
Message-ID: <98fd48a8-2178-48fe-b8a9-c01f3c35bc3e@f37g2000pri.googlegroups.com> (raw)
here's something unclear to me:
According to the manual
http://xahlee.org/elisp/Format-of-Keymaps.html
quote:
«
Each keymap is a list whose CAR is the symbol `keymap'. The remaining
elements of the list define the key bindings of the keymap.
...
Here as an example is the local keymap for Lisp mode, a sparse
keymap. It defines bindings for <DEL> and <TAB>, plus `C-c C-l',
`M-C-q', and `M-C-x'.
lisp-mode-map
=>
(keymap
(3 keymap
;; C-c C-z
(26 . run-lisp))
(27 keymap
;; `M-C-x', treated as `<ESC> C-x'
(24 . lisp-send-defun)
keymap
;; `M-C-q', treated as `<ESC> C-q'
(17 . indent-sexp))
;; This part is inherited from `lisp-mode-shared-map'.
keymap
;; <DEL>
(127 . backward-delete-char-untabify)
(27 keymap
;; `M-C-q', treated as `<ESC> C-q'
(17 . indent-sexp))
(9 . lisp-indent-line))
»
if we look at the lisp-mode-map example above, it has 5 items. (not
counting the first item “keymap”, and the third item ‘keymap’ is
probably typo orphaned from above comment line”)
If we look at the item
(3 keymap
;; C-c C-z
(26 . run-lisp))
this does not seem to be one of the form specified for allowed
elements in a keymap. The doc says the following form is allowed:
«
(type . binding)
(t . binding)
char-table
string
»
Should the doc add a form “(type . keymap)”?
also, in:
http://xahlee.org/elisp/Inheritance-and-Keymaps.html
it says:
«A keymap can inherit the bindings of another keymap, which we call
the parent keymap. Such a keymap looks like this:
(keymap bindings... . parent-keymap)
»
if i understand it correctly, when expanded, such a keymap looks like
this:
(keymap
element-1
element-2
element-3
...
element-n
symbolOfParentKeymap
)
So, effectively, such a keymap is effectively having a
symbolOfParentKeymap appended to the original keymap list. Is that
right?
Xah
∑ http://xahlee.org/
☄
next reply other threads:[~2008-10-28 6:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-28 6:41 Xah [this message]
2008-10-31 3:26 ` confusion on keymap's forms in doc Kevin Rodgers
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=98fd48a8-2178-48fe-b8a9-c01f3c35bc3e@f37g2000pri.googlegroups.com \
--to=xahlee@gmail.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.
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).