unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Alan Mackenzie <acm@muc.de>
Subject: Re: Novice question: my add-hook binding for c-mode doesnt work :(
Date: Sat, 3 Dec 2005 21:15:38 +0000	[thread overview]
Message-ID: <qt1tmd.57.ln@acm.acm> (raw)
In-Reply-To: mailman.17607.1133515063.20277.help-gnu-emacs@gnu.org

"Kpoxman (sent by Nabble.com)" <lists@nabble.com> wrote on Fri, 2 Dec
2005 01:10:36 -0800 (PST):

> Thank you guys!
> So, the correct code is (I've tested and it works):

> (add-hook 'c-mode-common-hook
> 	  '(lambda () (define-key c-mode-base-map (kbd "M-o") 'kpox-switch-h-cpp))
> 	  )

Just one small point:  The above code "adds" the binding to the key map
every time you open a CC Mode buffer.  You really only need to add the
key binding once: use CC Mode's initialization hook instead:

(add-hook 'c-initialization-hook
        '(lambda () (define-key c-mode-base-map (kbd "M-o") 'kpox-switch-h-cpp)))

-- 
Alan Mackenzie (Munich, Germany)
Email: aacm@muuc.dee; to decode, wherever there is a repeated letter
(like "aa"), remove half of them (leaving, say, "a").

  parent reply	other threads:[~2005-12-03 21:15 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-12-01 11:08 Novice question: my add-hook binding for c-mode doesnt work :( Kpoxman (sent by Nabble.com)
2005-12-02  6:52 ` Xavier Maillard
2005-12-02  7:07   ` Henrik Enberg
2005-12-02  9:10     ` Kpoxman (sent by Nabble.com)
     [not found]     ` <mailman.17607.1133515063.20277.help-gnu-emacs@gnu.org>
2005-12-03  2:07       ` Stefan Monnier
2005-12-03 21:15       ` Alan Mackenzie [this message]
2005-12-04 15:48         ` Stefan Monnier
2005-12-04 16:05         ` Matthieu Moy
     [not found] <mailman.17480.1133437995.20277.help-gnu-emacs@gnu.org>
2005-12-01 13:45 ` Anselm Helbig
2005-12-01 16:18 ` Thien-Thi Nguyen
2005-12-01 16:56 ` Johan Bockgård

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=qt1tmd.57.ln@acm.acm \
    --to=acm@muc.de \
    /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).